You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// emptySnap actions comes through when the user uses the 'clear' button on the front end to clear the snapshot history and move slider back to 0 position
266
266
case'emptySnap':
267
-
tabsObj[tabId].snapshots=[tabsObj[tabId].snapshots[tabsObj[tabId].snapshots.length-1]];// reset snapshots to page last state recorded
267
+
// REFACTORED TO HAVE CLEAR BUTTON KEEP CURRENT STATE OF DEMO APP RATHER THAN JUST THE LAST STATE RECORDED
268
+
// PRIOR IMPLEMENTATION WAS FAILING TO RESET STATE OF DEMO APP UPON CLEAR
269
+
// IF CHANGING, CHANGE MAINSLICE.JS TOO
270
+
tabsObj[tabId].snapshots=[tabsObj[tabId].snapshots[tabsObj[tabId].currLocation.index]];// reset snapshots to current page state
0 commit comments