Changeset 37021
- Timestamp:
- 03/14/10 20:34:54 (3 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
lang/javascript/vimperator-plugins/trunk/zoom-em-all.js
r37019 r37021 40 40 <description>Zoom them all.</description> 41 41 <description lang="ja">ブラウザ全体をズーム</description> 42 <version>1. 0.0</version>42 <version>1.1.0</version> 43 43 <author mail="anekos@snca.net" homepage="http://d.hatena.ne.jp/nokturnalmortum/">anekos</author> 44 44 <license>new BSD License (Please read the source code comments of this plugin)</license> … … 58 58 let INFO = 59 59 <> 60 <plugin name="ZoomEmAll" version="1. 0.0"60 <plugin name="ZoomEmAll" version="1.1.0" 61 61 href="http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/zoom-em-all.js" 62 62 summary="Zoom or pan for whole firefox." … … 77 77 </item> 78 78 </plugin> 79 <plugin name="ZoomEmAll" version="1. 0.0"79 <plugin name="ZoomEmAll" version="1.1.0" 80 80 href="http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/zoom-em-all.js" 81 81 summary="ブラウザ全体をズーム" … … 116 116 'Zoom Em All', 117 117 function (args) { 118 docViewer.fullZoom = parseInt(args.literalArg || '100', 10) / 100; 118 let [, s, d] = args.literalArg.trim().match(/^([-+])(\d+)/) || []; 119 if (d) { 120 docViewer.fullZoom += parseInt(args.literalArg || '100', 10) / 100; 121 } else { 122 docViewer.fullZoom = parseInt(args.literalArg || '100', 10) / 100; 123 } 119 124 }, 120 125 {
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)