diff --git a/core/deck.core.js b/core/deck.core.js index 39796273..3ea4c86d 100644 --- a/core/deck.core.js +++ b/core/deck.core.js @@ -342,7 +342,10 @@ that use the API provided by core. removeContainerHashClass($.deck('getSlide', from).attr('id')); addContainerHashClass($.deck('getSlide', to).attr('id')); if (Modernizr.history) { - window.history.replaceState({}, "", hashPath); + try { + window.history.replaceState({}, "", hashPath); + } catch (exception) { + } } };