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

Commit

Permalink
Don't detect Seamonkey as Firefox (bug 666303)
Browse files Browse the repository at this point in the history
  • Loading branch information
robhudson committed Oct 25, 2012
1 parent 22fb057 commit 022bf6a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions media/js/zamboni/browser.js
Expand Up @@ -36,6 +36,12 @@ function BrowserUtils() {
}
}

// Seamonkey looks like Firefox but Firefox doesn't look like Seamonkey.
// If both are true, set Firefox to false.
if (browser.firefox && browser.seamonkey) {
browser.firefox = false;
}

var os = {},
platform = "";
for (i in osStrings) {
Expand Down

0 comments on commit 022bf6a

Please sign in to comment.