aboutsummaryrefslogtreecommitdiffstats
path: root/_libly.js
diff options
context:
space:
mode:
authorsuVene2008-12-11 16:05:20 +0000
committersuVene2008-12-11 16:05:20 +0000
commit696184fa92509ff59fa2d9b72bb51521606d1096 (patch)
tree062af152b18bbd3050977f0d1e00548b8f7a73ce /_libly.js
parent7cc889b67fcec3d4d7343a4ad76fbb1685e8ad44 (diff)
downloadvimperator-plugins-696184fa92509ff59fa2d9b72bb51521606d1096.tar.bz2
O.o
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@26426 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to '_libly.js')
-rw-r--r--_libly.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/_libly.js b/_libly.js
index d89a5b1..aeb5558 100644
--- a/_libly.js
+++ b/_libly.js
@@ -5,7 +5,7 @@ var PLUGIN_INFO =
<description>vimperator plugins library?</description>
<description lang="ja">適当なライブラリっぽいものたち。</description>
<author mail="suvene@zeromemory.info" homepage="http://zeromemory.sblo.jp/">suVene</author>
- <version>0.1.6</version>
+ <version>0.1.7</version>
<minVersion>1.2</minVersion>
<maxVersion>2.0pre</maxVersion>
<detail><![CDATA[
@@ -102,7 +102,7 @@ libly.$U = {//{{{
},
A: function(iterable) {
var ret = [];
- if (typeof iterable == 'undefined') return ret;
+ if (!iterable) return ret;
if (typeof iterable == 'string') return [iterable];
if (!(typeof iterable == 'function' && iterable == '[object NodeList]') &&
iterable.toArray) return iterable.toArray();