fix issue 1394 (#1399)

This commit is contained in:
Naman Aggarwal
2020-01-02 01:34:54 +05:30
committed by Jeffrey Warren
parent 13270a668c
commit 772a56989f

View File

@@ -90,7 +90,10 @@ window.onload = function () {
var resetSequence = function () { var resetSequence = function () {
var r = confirm('Do you want to reset the sequence?'); var r = confirm('Do you want to reset the sequence?');
if (r) if (r)
window.location = '/'; {
window.location.hash = '';
location.reload();
}
}; };
$('#addStep select').on('change', ui.selectNewStepUi); $('#addStep select').on('change', ui.selectNewStepUi);