aboutsummaryrefslogtreecommitdiffstats
path: root/takahashiPresentation.js
diff options
context:
space:
mode:
authoranekos2009-11-02 10:00:42 +0000
committeranekos2009-11-02 10:00:42 +0000
commitdb24ae5afa00146ae709a44a28a65adf400f1aa8 (patch)
treec25a045a9a5cbd333c25ac5fdc7b7ae15c0968e2 /takahashiPresentation.js
parentb059bd7607fb1c13133b69fd42a9f1f8456ef4c0 (diff)
downloadvimperator-plugins-db24ae5afa00146ae709a44a28a65adf400f1aa8.tar.bz2
Follow HEAD (2.3pre)
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@35833 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'takahashiPresentation.js')
-rw-r--r--takahashiPresentation.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/takahashiPresentation.js b/takahashiPresentation.js
index 42f62da..dbeaf8b 100644
--- a/takahashiPresentation.js
+++ b/takahashiPresentation.js
@@ -4,9 +4,9 @@ var PLUGIN_INFO =
<name>{NAME}</name>
<description>simple takahashi-method presentation tool</description>
<author mail="konbu.komuro@gmail.com" homepage="http://d.hatena.ne.jp/hogelog/">hogelog</author>
- <version>0.1</version>
- <minVersion>2.0a1</minVersion>
- <maxVersion>2.0a1</maxVersion>
+ <version>0.1.1</version>
+ <minVersion>2.3pre</minVersion>
+ <maxVersion>2.3pre</maxVersion>
<updateURL>http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/takahashiPresentation.js</updateURL>
<date>2008/12/23 09:20:07</date>
<detail><![CDATA[
@@ -103,13 +103,13 @@ start :presentation.
options.guioptions = '';
win = window.content;
doc = win.document;
- let text = buffer.evaluateXPath('//div[@id="text"]').snapshotItem(0);
+ let text = util.evaluateXPath('//div[@id="text"]').snapshotItem(0);
pages = parsePages(text.innerHTML);
addKeys();
- header = buffer.evaluateXPath('//*[@id="header"]').snapshotItem(0);
+ header = util.evaluateXPath('//*[@id="header"]').snapshotItem(0);
- pre = buffer.evaluateXPath('//pre[@id="page"]').snapshotItem(0);
+ pre = util.evaluateXPath('//pre[@id="page"]').snapshotItem(0);
pre.style.fontSize = fontSize+'px';
pre.style.margin = '0px';