diff options
author | anekos | 2009-11-02 10:00:42 +0000 |
---|---|---|
committer | anekos | 2009-11-02 10:00:42 +0000 |
commit | db24ae5afa00146ae709a44a28a65adf400f1aa8 (patch) | |
tree | c25a045a9a5cbd333c25ac5fdc7b7ae15c0968e2 /scenario-actor.js | |
parent | b059bd7607fb1c13133b69fd42a9f1f8456ef4c0 (diff) | |
download | vimperator-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 'scenario-actor.js')
-rw-r--r-- | scenario-actor.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scenario-actor.js b/scenario-actor.js index 145494a..ad134ce 100644 --- a/scenario-actor.js +++ b/scenario-actor.js @@ -4,8 +4,8 @@ var PLUGIN_INFO = <name>{NAME}</name> <description>browser act scenario semi-automatic.</description> <author mail="konbu.komuro@gmail.com" homepage="http://d.hatena.ne.jp/hogelog/">hogelog</author> - <version>0.0.6</version> - <minVersion>2.0a2</minVersion> + <version>0.0.7</version> + <minVersion>2.3pre</minVersion> <updateURL>http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/scenario-actor.js</updateURL> <detail><![CDATA[ == Usage == @@ -154,7 +154,7 @@ function ScenarioActor () { //{{{ }, xpath: function (xpath) { if((typeof xpath)!='string'||!win.document) throw [name, value]; - return buffer.evaluateXPath(xpath, win.document).snapshotItem(0); + return util.evaluateXPath(xpath, win.document).snapshotItem(0); }, value: function (dst, src) { let edst = self.eval({xpath: self.eval(dst)}); |