diff options
author | anekos | 2011-09-06 23:11:12 +0900 |
---|---|---|
committer | anekos | 2011-09-06 23:11:12 +0900 |
commit | 3b131a8bc9e8e31f3341a8e35905f2c049fa2913 (patch) | |
tree | 7e18117667c1c2d42e4f70d3087a2849d4d697d0 | |
parent | f7326ddd4a00e37b380697bf104b6e4546fe0f5d (diff) | |
download | vimperator-plugins-3b131a8bc9e8e31f3341a8e35905f2c049fa2913.tar.bz2 |
例のやつ
-rw-r--r-- | zip-de-download.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/zip-de-download.js b/zip-de-download.js index 4d60266..9e0de28 100644 --- a/zip-de-download.js +++ b/zip-de-download.js @@ -332,8 +332,10 @@ let SITE_INFO = [ return; } liberator.echo("Started DownloadZip"); - let zipFile = self.download(arg[0], false, option); - liberator.echo("Completed DownloadZip: " + zipFile.path); + setTimeout(function () { + let zipFile = self.download(arg[0], false, option); + liberator.echo("Completed DownloadZip: " + zipFile.path); + }, 0); }, { argCount: "?", literal: true, |