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 /_libly.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 '_libly.js')
-rwxr-xr-x | _libly.js | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -12,9 +12,9 @@ var PLUGIN_INFO = <description lang="ja">適当なライブラリっぽいものたち。</description> <author mail="suvene@zeromemory.info" homepage="http://zeromemory.sblo.jp/">suVene</author> <license>MIT</license> - <version>0.1.24</version> - <minVersion>1.2</minVersion> - <maxVersion>2.0pre</maxVersion> + <version>0.1.25</version> + <minVersion>2.3pre</minVersion> + <maxVersion>2.3pre</maxVersion> <updateURL>http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/_libly.js</updateURL> <detail><![CDATA[ == Objects == @@ -322,7 +322,7 @@ libly.$U = {//{{{ // }}} // System {{{ readDirectory: function(path, filter, func) { - var d = io.getFile(path); + var d = io.File(path); if (d.exists() && d.isDirectory()) { let enm = d.directoryEntries; let flg = false; |