diff options
author | anekos | 2010-01-12 08:10:32 +0000 |
---|---|---|
committer | anekos | 2010-01-12 08:10:32 +0000 |
commit | 9d1042f4f173ae9561732ed7870c5da8ec5af9ad (patch) | |
tree | 7b31cacd366695537cb8f29004cd92e3f0845b37 /matanico.js | |
parent | 9df5798c876896a240a83dc04d30a78c0ef31780 (diff) | |
download | vimperator-plugins-9d1042f4f173ae9561732ed7870c5da8ec5af9ad.tar.bz2 |
XPath 修正
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@36419 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'matanico.js')
-rw-r--r-- | matanico.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/matanico.js b/matanico.js index d33d505..9cdef93 100644 --- a/matanico.js +++ b/matanico.js @@ -5,7 +5,7 @@ let PLUGIN_INFO = <description lang="ja">今見ている動画 / 検索結果の情報を Twitter に投稿する。</description>
<author mail="janus_wel@fb3.so-net.ne.jp" homepage="http://d.hatena.ne.jp/janus_wel">janus_wel</author>
<license document="http://www.opensource.org/licenses/bsd-license.php">New BSD License</license>
-<version>0.73</version>
+<version>0.74</version>
<minVersion>2.3pre</minVersion>
<maxVersion>2.3pre</maxVersion>
<updateURL>http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/matanico.js</updateURL>
@@ -155,7 +155,7 @@ NicoScraper.prototype = { let subjectNode;
switch (this.pagecheck()) {
case 'watch':
- subjectNode = $f('id("des_2")/table[2]/tbody/tr/td[2]');
+ subjectNode = $f('id("des_2")/table/tbody/tr/td/h1');
break;
case 'live':
subjectNode = $f('id("stream_description")');
|