router swallows excpetions on pushState
(not supported in iframes, used by builder)
This commit is contained in:
parent
56c25fee90
commit
a58a061df0
|
@ -42,7 +42,11 @@ export const screenRouter = (screens, onScreenSelected) => {
|
|||
onScreenSelected(screens[fallback], store, _url)
|
||||
}
|
||||
|
||||
!url.state && history.pushState(_url, null, _url)
|
||||
try {
|
||||
!url.state && history.pushState(_url, null, _url)
|
||||
} catch (_) {
|
||||
// ignoring an exception here as the builder runs an iframe, which does not like this
|
||||
}
|
||||
}
|
||||
|
||||
function click(e) {
|
||||
|
|
Loading…
Reference in New Issue