We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d84a449 commit e3a1236Copy full SHA for e3a1236
src/extension/background.js
@@ -67,6 +67,7 @@ class HistoryNode {
67
// marks from what branch this node is originated
68
this.branch = tabObj.currBranch;
69
this.stateSnapshot = obj;
70
+ this.axSnapshot;
71
this.children = [];
72
}
73
@@ -248,7 +249,9 @@ chrome.runtime.onConnect.addListener((port) => {
248
249
return true;
250
251
case 'jumpToSnap':
252
+ console.log('background.js: tabsObj before jump:', tabsObj);
253
chrome.tabs.sendMessage(tabId, msg);
254
+ console.log('background.js: tabsObj after jump:', tabsObj);
255
return true; // attempt to fix message port closing error, consider return Promise
256
257
case 'toggleRecord':
0 commit comments