js/history: do not remove special params
We used to do this to blacklist certain parameters to not trigger heavvy actions twice when navigating through history. We also do never want to see such parameters in our address bar. This conflicts with our slightly more complicated new filter URLs, unless we are able to handle them on client side this is disabled for now. IMO it should be handled server-side and eventually invol- ving one more redirect.
This commit is contained in:
parent
0b9850edc2
commit
b7cdff6fa5
|
@ -79,7 +79,7 @@
|
|||
|
||||
// TODO: I'd prefer to have the rightmost URL first
|
||||
if ('undefined' !== typeof cUrl) {
|
||||
cUrl = icinga.utils.removeUrlParams(cUrl, blacklist);
|
||||
// TODO: solve this on server side cUrl = icinga.utils.removeUrlParams(cUrl, blacklist);
|
||||
if (url === '') {
|
||||
url = cUrl;
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue