Skip to content

Commit

Permalink
fix for FF26
Browse files Browse the repository at this point in the history
  • Loading branch information
Quicksaver committed Dec 15, 2013
1 parent 6a8f34e commit 62d255b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions chrome/content/splitbrowse.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
AutoPagerNS.apSplitbrowse = {
//this is come from noscript DOMUtils
domUtils: {
lookupMethod: Components.utils ? Components.utils.lookupMethod : Components.lookupMethod,

lookupMethod: function(node, method) {
return function() { return node[method]; };
},

findBrowser: function(chrome, win) {
var gb = chrome.getBrowser();
var browsers;
Expand Down

0 comments on commit 62d255b

Please sign in to comment.