Add try,catch for IE11 as it breaks script execution

This commit is contained in:
Khmel Mykyta 2018-11-27 10:57:42 +02:00
parent 21d60e22b8
commit db91952050
No known key found for this signature in database
GPG Key ID: AD95911BE6D9D1BA

View File

@ -48,7 +48,11 @@ export function changeUrl(clientStore, usePush) {
if (!data.selectedKind) return;
const state = getUrlState(data);
history[usePush ? 'pushState' : 'replaceState'](state, '', state.url);
try {
history[usePush ? 'pushState' : 'replaceState'](state, '', state.url);
} catch (e) {
// do nothing
}
}
export function updateStore(queryParams, actions) {