diff options
author | anekos | 2013-07-08 22:17:24 +0900 |
---|---|---|
committer | anekos | 2013-07-08 22:17:24 +0900 |
commit | b84dff2ba1959eb2385e8ce88016f639a731efa0 (patch) | |
tree | 764b247563d7a9af90f024dfb28fa19d31085da4 /pixiv.js | |
parent | 05753e43a8724d23064843a8cde351692797f8cc (diff) | |
parent | 7ef8f640b971a2a687f4ddda193237bb4721a755 (diff) | |
download | vimperator-plugins-b84dff2ba1959eb2385e8ce88016f639a731efa0.tar.bz2 |
Merge branch 'master' of github.com:vimpr/vimperator-plugins
Diffstat (limited to 'pixiv.js')
-rw-r--r-- | pixiv.js | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -262,13 +262,16 @@ commands.addUserCommand( let saveMangaFiles=function(){ let htmldoc=getDOMHtmlDocument(xhrImgInfo.responseText); if(htmldoc){ - let max=htmldoc.getElementsByClassName('image-container').length; + let max=htmldoc.getElementsByClassName('image ui-scroll-view').length; for(var i=0;i<max;i++){ requestMangaSingleContent( - url.replace('manga','manga_big').replace('type=scroll','page=')+i, + url.replace('manga','manga_big') + .replace('type=scroll','page=') + .replace('&uarea=follower_new_illust','')+i, url.replace('&type=scroll','') ); } + } }; // }}} |