diff options
author | anekos | 2010-03-14 12:22:40 +0000 |
---|---|---|
committer | anekos | 2010-03-14 12:22:40 +0000 |
commit | 65cf8fa2a5e25e01efb86b8baa1b8618787461e4 (patch) | |
tree | 4b3644623b5f1019153d588bc6b2886cbc6c2bb4 /tabsort.js | |
parent | c1b262a229ed07f6aaec8a44d7f2d8683747432d (diff) | |
download | vimperator-plugins-65cf8fa2a5e25e01efb86b8baa1b8618787461e4.tar.bz2 |
about:blank があるときにエラーに成るのを修正
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@37026 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'tabsort.js')
-rwxr-xr-x | tabsort.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -38,7 +38,7 @@ let PLUGIN_INFO = <name>tabsort</name> <description>Add ":tabsort" and ":tabuniq" command.</description> <description lang="ja">":tabsort", ":tabuniq" コマンドを追加する</description> - <version>1.1.2</version> + <version>1.1.3</version> <author mail="anekos@snca.net" homepage="http://d.hatena.ne.jp/nokturnalmortum/">anekos</author> <minVersion>2.3</minVersion> <maxVersion>2.3</maxVersion> @@ -75,7 +75,7 @@ let PLUGIN_INFO = browser: #1=(tab.linkedBrowser), doc: #2=(#1#.contentDocument), url: (#1#.__SS_restore_data ? #1#.__SS_restore_data.url : (#2#.location && #2#.location.href)), - title: (#2#.title || #1#.__SS_restore_data.title) + title: (#1#.__SS_restore_data ? #1#.__SS_restore_data.title : #2#.title) } for ([i, tab] in util.Array(config.browser.mTabs)) ]; |