Changeset 860

Show
Ignore:
Timestamp:
2008-03-06 22:27:29 (10 months ago)
Author:
MaierMan
Message:

#557: Fast Filtering only sees text within the url column
fix regression

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/chrome/content/common/overlayFunctions.js

    r833 r860  
    410410                        links = links.filter( 
    411411                                function(link) { 
    412                                         if (fast && (fast.match(link.url.usable) || fast.match(link.desc))) { 
     412                                        if (fast && (fast.match(link.url.usable) || fast.match(link.description))) { 
    413413                                                return true; 
    414414                                        } 
  • trunk/components/filterManager.js

    r816 r860  
    221221 
    222222        match: function F_match(str) { 
     223                if (!str) { 
     224                        return; 
     225                } 
    223226                return this._regs.some( 
    224227                        function(reg) {