diff options
author | anekos | 2010-04-07 16:57:44 +0000 |
---|---|---|
committer | anekos | 2010-04-07 16:57:44 +0000 |
commit | 6e887bd289f82af1a56c931eedbeec2371625797 (patch) | |
tree | eea327e7051c1dfddc8847e11c473366b9da5bfc /_libly.js | |
parent | 4dea325904692f22e3d0d84265d6bc77ea7cb018 (diff) | |
download | vimperator-plugins-6e887bd289f82af1a56c931eedbeec2371625797.tar.bz2 |
オリジナルの関数を参照しやすいようにした
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@37169 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to '_libly.js')
-rwxr-xr-x | _libly.js | 5 |
1 files changed, 3 insertions, 2 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.32</version> + <version>0.1.33</version> <minVersion>2.3pre</minVersion> - <maxVersion>2.3pre</maxVersion> + <maxVersion>2.3</maxVersion> <updateURL>http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/_libly.js</updateURL> <detail><![CDATA[ == Objects == @@ -275,6 +275,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}); return libly.$U.extend({ original: original, current: current, |