• JMap.History.getHashParameters

    Returns a JS object that contains all key / value entries present in the hash of the url.

    Returns {
        [key: string]: string;
    }

    • [key: string]: string

    Example

    // get all parameters in the url hash
    JMap.History.getHashParameters()

    // Ex. url = ***http://localhost:8080/services/ng#ngProjectId=0&myvar=test***
    // Will return this object :
    {
    ngProjectId: 0,
    myvar: "test"
    }