diff options
author | mitsugu oyama | 2011-04-29 18:11:22 +0900 |
---|---|---|
committer | mitsugu oyama | 2011-04-29 18:11:22 +0900 |
commit | b655459ff41348dd572655340572490cb24ea849 (patch) | |
tree | daa05993e170f7fac19eeb4bdd802b3c762807ae /pixiv.js | |
parent | 058255ee5d04fdbd6d27685ebc8e7e5695625d2e (diff) | |
download | vimperator-plugins-b655459ff41348dd572655340572490cb24ea849.tar.bz2 |
特定のユーザ名でパス名を取得できなかった問題を修正
Diffstat (limited to 'pixiv.js')
-rw-r--r-- | pixiv.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -192,7 +192,7 @@ commands.addUserCommand( .getElementsByTagName('script').item(0) .childNodes.item(0).nodeValue; fst=strScript.search(/unshift/i)+'unshift'.length+2; - snd=strScript.indexOf('_',fst); + snd=strScript.lastIndexOf('_'); strFst=strScript.substr(fst,snd-fst); fst=snd; |