Skip to content
This repository has been archived by the owner on Mar 5, 2019. It is now read-only.

Commit

Permalink
Fix a typo in shouldStack
Browse files Browse the repository at this point in the history
  • Loading branch information
yfdyh000 committed Mar 12, 2015
1 parent 5d24578 commit b2550e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chrome/content/tabutils.js
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ tabutils._tabOpeningOptions = function() {
[/\S*insertRelatedAfterCurrent\S*(?=\))/, "false"],
[/(?=(return t;)(?![\s\S]*\1))/, function() {
if (t.hasAttribute("opener")) {
function shouldStack(tab) { let args = tab.arguments; args.aReferrerURI || args.aRelatedToCurrent && args.aURI != "about:blank"; }
function shouldStack(tab) { let args = tab.arguments; return args.aReferrerURI || args.aRelatedToCurrent && args.aURI != "about:blank"; }

let lastRelatedTab = this.mCurrentTab;
let isStack = this.isStackedTab(lastRelatedTab);
Expand Down
2 changes: 1 addition & 1 deletion install.rdf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<em:id>[email protected]</em:id>
<em:type>2</em:type>
<em:name>Tab Utilities Fixed</em:name>
<em:version>1.5.2015.03.09</em:version>
<em:version>1.5.2015.03.09-fix</em:version>
<em:creator>YFdyh000</em:creator>
<em:contributor>ithinc (Former author)</em:contributor>
<em:contributor>Leszek(teo)Życzkowski</em:contributor>
Expand Down

0 comments on commit b2550e2

Please sign in to comment.