Changeset 681
- Timestamp:
- 03/14/08 11:09:00 (9 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/config-service/src/chrome/chromeFiles/content/browser.js
r680 r681 441 441 442 442 function scriptsMatching(urls) { 443 return GM_getConfig().getMatchingScripts( 444 function(script) { 445 return urls.some(function(url) { return script.matchesURL(url); }); 443 444 function testMatchURLs(script) { 445 446 function testMatchURL(url) { 447 return script.matchesURL(url); 446 448 } 447 ); 449 450 return urls.some(testMatchURL); 451 } 452 453 return GM_getConfig().getMatchingScripts(testMatchURLs); 448 454 } 449 455
