diff options
author | anekos | 2011-06-22 18:21:10 +0900 |
---|---|---|
committer | anekos | 2011-06-22 18:21:10 +0900 |
commit | 3659e2ce3d368a08bfc497836a6d00a59df2edab (patch) | |
tree | b7e91d5fa660e549f003029fa58060ffaa670f86 /zip-de-download.js | |
parent | 85445f7739ef54ee68f0b97ce2f6689319b5b557 (diff) | |
download | vimperator-plugins-3659e2ce3d368a08bfc497836a6d00a59df2edab.tar.bz2 |
芋臭い RegExp の仕様変更に対応
Diffstat (limited to 'zip-de-download.js')
-rw-r--r-- | zip-de-download.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zip-de-download.js b/zip-de-download.js index 4a54c85..4d60266 100644 --- a/zip-de-download.js +++ b/zip-de-download.js @@ -186,7 +186,7 @@ let SITE_INFO = [ let links = Array.slice( content.document.querySelectorAll('a')).filter( - function (link) (link.href && extPattern(link.href))); + function (link) (link.href && extPattern.test(link.href))); let xs = {}; for each(let link in links){ |