diff options
author | anekos | 2009-03-03 12:15:40 +0000 |
---|---|---|
committer | anekos | 2009-03-03 12:15:40 +0000 |
commit | ba64873039b5ecd421aad55ff1523956416cdf52 (patch) | |
tree | abc4236c0969d795a925d4a122be11d13efc63a2 /maine_coon.js | |
parent | d06fa65d9fff226b7e8254f1a31cd7831051512e (diff) | |
download | vimperator-plugins-ba64873039b5ecd421aad55ff1523956416cdf52.tar.bz2 |
フルスクリーン時の挙動を修正
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@30729 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'maine_coon.js')
-rw-r--r-- | maine_coon.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/maine_coon.js b/maine_coon.js index 3fcd24d..26505d0 100644 --- a/maine_coon.js +++ b/maine_coon.js @@ -38,7 +38,7 @@ let PLUGIN_INFO = <name lang="ja">メインクーン</name> <description>Make the screen larger</description> <description lang="ja">なるべくでかい画面で使えるように</description> - <version>2.2.0</version> + <version>2.2.1</version> <author mail="anekos@snca.net" homepage="http://d.hatena.ne.jp/nokturnalmortum/">anekos</author> <minVersion>2.0pre</minVersion> <maxVersion>2.0pre</maxVersion> @@ -214,8 +214,8 @@ let tagetIDs = (liberator.globalVariables.maine_coon_targets || '').split(/\s+/) window.fullScreen = full; delay(function () { hideTargets(full); - if (!options.get('mainecoon').has('l')) - document.getElementById('status-bar').setAttribute('moz-collapsed', false); + document.getElementById('status-bar').setAttribute('moz-collapsed', + options.get('mainecoon').has('l')); document.getElementById('navigator-toolbox').collapsed = full; if (!full) window.maximize(); |