diff --git a/examples/demo.js b/examples/demo.js index 307dd2a7..2402c3be 100644 --- a/examples/demo.js +++ b/examples/demo.js @@ -90,7 +90,10 @@ window.onload = function () { var resetSequence = function () { var r = confirm('Do you want to reset the sequence?'); if (r) - window.location = '/'; + { + window.location.hash = ''; + location.reload(); + } }; $('#addStep select').on('change', ui.selectNewStepUi);