Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: chrome/ext/popup.js

Issue 5768552254537728: Fixed: Popup in Safari won't open after closing it programmatically (Closed)
Patch Set: Created Jan. 16, 2014, 11:18 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | popup.js » ('j') | safari/ext/popup.js » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 (function() 1 (function()
2 { 2 {
3 var backgroundPage = chrome.extension.getBackgroundPage(); 3 var backgroundPage = chrome.extension.getBackgroundPage();
4 window.ext = backgroundPage.ext; 4 window.ext = backgroundPage.ext;
5 window.TabMap = backgroundPage.TabMap; 5 window.TabMap = backgroundPage.TabMap;
6
7 window.closePopup = function()
8 {
9 window.close();
10 }
6 })(); 11 })();
OLDNEW
« no previous file with comments | « no previous file | popup.js » ('j') | safari/ext/popup.js » ('J')

Powered by Google App Engine
This is Rietveld