aboutsummaryrefslogtreecommitdiffstats
path: root/zoom-em-all.js
diff options
context:
space:
mode:
authoranekos2014-12-08 21:47:31 +0900
committeranekos2014-12-08 21:47:31 +0900
commit7b76d31c959773b0edd1a4a82f92208d31b0b983 (patch)
tree5875e03542f95f40cc25817d10a8a1901f6f3310 /zoom-em-all.js
parent8a50a5d403916daf900315ff8ad8b2c1d37d7e68 (diff)
downloadvimperator-plugins-7b76d31c959773b0edd1a4a82f92208d31b0b983.tar.bz2
Fix: nsIMarkupDocumentViewer has been removed
Diffstat (limited to 'zoom-em-all.js')
-rw-r--r--zoom-em-all.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/zoom-em-all.js b/zoom-em-all.js
index 75a71b6..864a33e 100644
--- a/zoom-em-all.js
+++ b/zoom-em-all.js
@@ -39,7 +39,7 @@ let PLUGIN_INFO = xml`
<name lang="ja">Zoom Em All</name>
<description>Zoom them all.</description>
<description lang="ja">ブラウザ全体をズーム</description>
- <version>1.1.0</version>
+ <version>1.1.1</version>
<author mail="anekos@snca.net" homepage="http://d.hatena.ne.jp/nokturnalmortum/">anekos</author>
<license>new BSD License (Please read the source code comments of this plugin)</license>
<license lang="ja">修正BSDライセンス (ソースコードのコメントを参照してください)</license>
@@ -56,7 +56,7 @@ let PLUGIN_INFO = xml`
// }}}
// INFO {{{
let INFO = xml`
- <plugin name="ZoomEmAll" version="1.1.0"
+ <plugin name="ZoomEmAll" version="1.1.1"
href="http://github.com/vimpr/vimperator-plugins/blob/master/zoom-em-all.js"
summary="Zoom or pan for whole firefox."
lang="en-US"
@@ -75,7 +75,7 @@ let INFO = xml`
</description>
</item>
</plugin>
- <plugin name="ZoomEmAll" version="1.1.0"
+ <plugin name="ZoomEmAll" version="1.1.1"
href="http://github.com/vimpr/vimperator-plugins/blob/master/zoom-em-all.js"
summary="ブラウザ全体をズーム"
lang="ja"
@@ -104,7 +104,7 @@ let INFO = xml`
getInterface(Ci.nsIWebNavigation).
QueryInterface(Ci.nsIDocShell).
contentViewer.
- QueryInterface(Ci.nsIMarkupDocumentViewer);
+ QueryInterface(Ci.nsIMarkupDocumentViewer || Ci.nsIContentViewer);
__context__.__defineGetter__('fullZoom', function () docViewer.fullZoom);
__context__.__defineSetter__('fullZoom', function (v) docViewer.fullZoom = v);