SwVitaliy

Untitled

Nov 23rd, 2012
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. function saveSessionIconsToLocalStorage() {
  2. var parser = document.createElement('a');
  3. var session = fvdSynchronizer.Driver.Tabs.getOpenedTabSession();
  4.  
  5. session.eachTab(function(tab) {
  6.  
  7. parser.href = tab.url;
  8. localStorage.setItem('tabs.icons["' + parser.hostname + ']', tab.icon);
  9.  
  10. });
  11. }
  12. saveSessionIconsToLocalStorage();
Advertisement
Add Comment
Please, Sign In to add comment