Changeset 832

Show
Ignore:
Timestamp:
2008-03-02 22:20:41 (10 months ago)
Author:
MaierMan
Message:

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

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.0.x/chrome/content/common/overlayFunctions.js

    r719 r832  
    528528                        links = links.filter( 
    529529                                function(link) { 
    530                                         if (additional.match(link.url.url)) { 
     530                                        if (additional.match(link.url.url) || additional.match(link.desc)) { 
    531531                                                return true; 
    532532                                        } 
  • branches/1.0.x/chrome/content/dta/select.js

    r561 r832  
    491491                                checked = 'manuallySelected'; 
    492492                        } 
    493                         else if (additional.match(link.url.url)) { 
     493                        else if (additional.match(link.url.url) || additional.match(link.desc)) { 
    494494                                checked = 'f8'; 
    495495                        }