Skip to content

Commit

Permalink
Missing semicolons.
Browse files Browse the repository at this point in the history
  • Loading branch information
arantius committed Jan 2, 2012
1 parent 3b96874 commit da3853d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion content/browser.js
Expand Up @@ -144,7 +144,7 @@ GM_BrowserUI.observe = function(subject, topic, data) {

GM_BrowserUI.openTab = function(url) {
gBrowser.selectedTab = gBrowser.addTab(url);
}
};

/**
* The browser XUL has unloaded. Destroy references/watchers/listeners.
Expand Down
4 changes: 2 additions & 2 deletions modules/remoteScript.js
Expand Up @@ -264,11 +264,11 @@ RemoteScript.prototype.setScript = function(aScript) {
this._baseName = aScript._basedir;
this.script = aScript;
this._postParseScriptFile();
}
};

RemoteScript.prototype.showSource = function(aTabBrowser) {
// Turn standard browser into tab browser, if necessary.
if (aTabBrowser.getTabBrowser) aTabBrowser = aTabBrowser.getTabBrowser()
if (aTabBrowser.getTabBrowser) aTabBrowser = aTabBrowser.getTabBrowser();

if (this._progress[0] < 1) {
throw new Error('Script is not loaded!');
Expand Down

0 comments on commit da3853d

Please sign in to comment.