1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00

vueui: access to full-id in app

This commit is contained in:
Ivan Velev 2021-09-20 12:15:15 -07:00
parent dcd9e6cbe2
commit da5707d7e9

View File

@ -83,7 +83,7 @@ export default {
// save current period (aka zoom)
// use sessionStorage (not localStorage), as we want this to be a very temporary memory for current page tab/window and no longer; NOTE: it serves when navigating from an "*" query to a specific capture and subsequent reloads
if (window.sessionStorage) {
window.sessionStorage.setItem('zoom__'+this.config.url, newPeriod.getFullId());
window.sessionStorage.setItem('zoom__'+this.config.url, newPeriod.fullId);
}
this.currentPeriod = newPeriod;
}