| 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})}; |
| } |
| }; |