From c1528da1db52f43a36bcd516b6b0884e4586d4a8 Mon Sep 17 00:00:00 2001 From: trapezoid Date: Wed, 26 Mar 2008 16:31:12 +0000 Subject: lang/javascript/vimperator-plugins/trunk/copy.js: some fix git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@8423 d0d07461-0603-4401-acd4-de1884942a52 --- copy.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'copy.js') diff --git a/copy.js b/copy.js index f48ca44..f3d52dc 100644 --- a/copy.js +++ b/copy.js @@ -1,7 +1,7 @@ /** * vimperator plugin * Add `copy' command - * For vimperator 0.6pre + * For vimperator 0.5.3 * @author teramako teramako@gmail.com * @version 0.1 * @@ -47,7 +47,7 @@ liberator.commands.addUserCommand(['copy'],'Copy to clipboard', var isError = false; if (special && arg){ try { - copyString = window.eval('with(vimperator){' + arg + '}'); + copyString = window.eval('with(liberator){' + arg + '}'); switch (typeof copyString){ case 'object': copyString = copyString === null ? 'null' : copyString.toSource(); -- cgit v1.2.3