Skip to content

Commit

Permalink
fixed firebug version check, patch by @dorian (fixes #6)
Browse files Browse the repository at this point in the history
  • Loading branch information
darwin committed Nov 5, 2009
1 parent d26b6cd commit 3dde5ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firefox/chrome/content/firequery.js
Expand Up @@ -10,7 +10,7 @@ FBL.ns(function() {
if (a.length<2) return false;
var major = parseInt(a[0], 10);
var minor = parseInt(a[1], 10);
return major>=minMajor && minor>=minMinor;
return (major==minMajor && minor>=minMinor) || (major>minMajor);
};

if (!checkFirebugVersion(1,3)) {
Expand Down

0 comments on commit 3dde5ea

Please sign in to comment.