diff options
author | anekos | 2011-06-18 00:40:30 +0900 |
---|---|---|
committer | anekos | 2011-06-18 00:40:30 +0900 |
commit | a0cddf73f4db2a989bb123d642292569b040e4c7 (patch) | |
tree | 67d6ed23cb54c0cea0a87b1737fd9cef66b1b415 /_libly.js | |
parent | 742b0ec6275c5c0b8eeb1369be4af8bf9566a876 (diff) | |
download | vimperator-plugins-a0cddf73f4db2a989bb123d642292569b040e4c7.tar.bz2 |
original が存在しない場合に対処
Diffstat (limited to '_libly.js')
-rw-r--r-- | _libly.js | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,5 +1,6 @@ /*** BEGIN LICENSE BLOCK {{{ Copyright (c) 2008 suVene<suvene@zeromemory.info> + Copyright (c) 2008-2011 anekos<anekos@snca.net> distributable under the terms of an MIT-style license. http://www.opensource.jp/licenses/mit-license.html @@ -11,10 +12,10 @@ var PLUGIN_INFO = <description>Vimperator plugins library?</description> <description lang="ja">適当なライブラリっぽいものたち。</description> <author mail="suvene@zeromemory.info" homepage="http://zeromemory.sblo.jp/">suVene</author> + <author mail="anekos@snca.net" homepage="http://snca.net/">anekos</author> <license>MIT</license> - <version>0.1.34</version> + <version>0.1.35</version> <minVersion>2.3pre</minVersion> - <maxVersion>3.0</maxVersion> <updateURL>https://github.com/vimpr/vimperator-plugins/raw/master/_libly.js</updateURL> <detail><![CDATA[ == Objects == @@ -275,7 +276,7 @@ libly.$U = {//{{{ let self = this, args = arguments; return func.call(self, function (_args) original.apply(self, _args || args), args); }; - libly.$U.extend(current, {original: original.original || original, restore: restore}); + libly.$U.extend(current, {original: original && original.original, restore: restore}); return libly.$U.extend({ original: original, current: current, |