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

Delta Between Two Patch Sets: chrome/ext/popup.js

Issue 5768552254537728: Fixed: Popup in Safari won't open after closing it programmatically (Closed)
Left Patch Set: Created Jan. 16, 2014, 11:18 a.m.
Right Patch Set: Created Jan. 16, 2014, 3:26 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | popup.js » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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 = {
5 __proto__: backgroundPage.ext,
6 closePopup: function()
7 {
8 window.close();
9 }
10 };
5 window.TabMap = backgroundPage.TabMap; 11 window.TabMap = backgroundPage.TabMap;
6
7 window.closePopup = function()
8 {
9 window.close();
10 }
11 })(); 12 })();
LEFTRIGHT
« no previous file | popup.js » ('j') | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
This is Rietveld