diff options
author | anekos | 2009-12-03 13:43:47 +0000 |
---|---|---|
committer | anekos | 2009-12-03 13:43:47 +0000 |
commit | e930bacd0c9ac8f3659c4869cbc6359bf18eab29 (patch) | |
tree | 3a500712d02e35dfb51681d5b6f34d2bf4914597 /zip-de-download.js | |
parent | e0055e6a0f8ef679ea34c7cb65128d374482f7c7 (diff) | |
download | vimperator-plugins-e930bacd0c9ac8f3659c4869cbc6359bf18eab29.tar.bz2 |
__proto__ を回避して、リロード可能にした
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@36065 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'zip-de-download.js')
-rw-r--r-- | zip-de-download.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/zip-de-download.js b/zip-de-download.js index 4f7cc8a..61a23a9 100644 --- a/zip-de-download.js +++ b/zip-de-download.js @@ -1,5 +1,5 @@ let INFO = -<plugin name="zip-de-download" version="0.5.2" +<plugin name="zip-de-download" version="0.5.3" href="" summary="ZIPでダウンロードするお" xmlns="http://vimperator.org/namespaces/liberator"> @@ -113,7 +113,7 @@ let SITE_INFO = [ } ]; -__proto__ = (function(){ +(function(){ // nsIZipWriter#open io-flags const PR_RDONLY = 0x01; const PR_WRONLY = 0x02; @@ -286,6 +286,6 @@ __proto__ = (function(){ completer: liberator.modules.completion.file }, true); - return self; + util.extend(__context__, self); })(); // vim: sw=2 ts=2 et: |