diff options
author | janus_wel | 2008-10-10 14:19:26 +0000 |
---|---|---|
committer | janus_wel | 2008-10-10 14:19:26 +0000 |
commit | a0603966a7b3ba5c07d137273f7d08f869021fe2 (patch) | |
tree | fe843052155f0559b4c046491b7d88c6980d122c /nnp_cooperation.js | |
parent | 2791119fc2e9c808a1f88e9b663030b34b79db6c (diff) | |
download | vimperator-plugins-a0603966a7b3ba5c07d137273f7d08f869021fe2.tar.bz2 |
fix up XML ( don't use and image -> img )
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@21089 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'nnp_cooperation.js')
-rw-r--r-- | nnp_cooperation.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nnp_cooperation.js b/nnp_cooperation.js index 7d31163..f4db214 100644 --- a/nnp_cooperation.js +++ b/nnp_cooperation.js @@ -4,7 +4,7 @@ * @description this script give you keyboard opration for NicoNicoPlaylist.
* @description-ja NicoNicoPlaylist をキーボードで操作できるようにする。
* @author janus_wel <janus_wel@fb3.so-net.ne.jp>
- * @version 0.31
+ * @version 0.32
* @minversion 1.2
* ==VimperatorPlugin==
*
@@ -123,7 +123,7 @@ const captionTemplate = '<caption>now playing: $PLAYTITLE (display $NUMOFDISPLAY const thead = [
'<thead>',
'<tr>',
- '<td> </td>',
+ '<td> </td>',
'<td>thumbnail</td>',
'<td>title</td>',
'<td>url</td>',
@@ -135,7 +135,7 @@ const thead = [ const itemHTML = [
'<tr>',
'<td class="index">$INDEX:</td>',
- '<td class="thumbnail"><image src="$THUMBNAILURL$ID" width="33" height="25" /></td>',
+ '<td class="thumbnail"><img src="$THUMBNAILURL$ID" width="33" height="25" /></td>',
'<td>$TITLE</td>',
'<td>$URL</td>',
'</tr>',
|