Changed method that onUpdaed works, in order to resolve issue #5

This commit is contained in:
Nick Krichevsky 2015-02-26 13:30:52 -05:00
parent bbe24ece06
commit acb0b884b2

View file

@ -109,10 +109,14 @@ chrome.tabs.onCreated.addListener(function(currentTab){
});
chrome.tabs.onUpdated.addListener(function(tabId,changeInfo,currentTab){
var tab = findTabById(currentTab.windowId, tabId);
tab.window.tabs[tab.index] = currentTab;
saveWindows();
chrome.tabs.onUpdated.addListener(function(tabId,changeInfo,resultingTab){
var tab = findTabById(resultingTab.windowId, tabId);
// tab.window.tabs[tab.index] = resultingTab; //Old method that worked, but was weird on some pages such a gist
chrome.tabs.get(tabId,function(currentTab){
console.log(currentTab);
tab.window.tabs[tab.index] = currentTab;
saveWindows();
});
});
chrome.tabs.onMoved.addListener(function(tabId,objects){