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

Unified Diff: chrome/ext/background.js

Issue 4538458420805632: Fix: issue with chrome v28 and below (Closed)
Patch Set: Created Feb. 6, 2014, 1:35 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/ext/background.js
===================================================================
--- a/chrome/ext/background.js
+++ b/chrome/ext/background.js
@@ -186,6 +186,8 @@
_wrapSender: function(sender)
{
var tab = new Tab(sender.tab);
+ if (sender.url == null);
Thomas Greiner 2014/02/10 11:05:34 Add a comment above why this is necessary and inve
+ sender.url = tab.url;
return {tab: tab, frame: new Frame({url: sender.url, tab: tab})};
}
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld