fix IE11 error from sentry

This commit is contained in:
Simon Knox 2017-05-19 23:10:40 +10:00
parent 39a9265969
commit fe41456393
1 changed files with 2 additions and 1 deletions

View File

@ -66,7 +66,8 @@ w.gl.utils.removeParamQueryString = function(url, param) {
})()).join('&');
};
w.gl.utils.removeParams = (params) => {
const url = new URL(window.location.href);
const url = document.createElement('a');
url.href = window.location.href;
params.forEach((param) => {
url.search = w.gl.utils.removeParamQueryString(url.search, param);
});