aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortrapezoid2008-09-15 02:50:31 +0000
committertrapezoid2008-09-15 02:50:31 +0000
commit149d82c271ae6ea9378b9ea832da648e0f34cba0 (patch)
treef9e361c614b1bdd229131a07942c2db6f568d23e
parent4c4f4a4638e9aff266af839967680d720fcd88f4 (diff)
downloadvimperator-plugins-149d82c271ae6ea9378b9ea832da648e0f34cba0.tar.bz2
browser_object.js: yank出来ていなかったのを修正
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@19324 d0d07461-0603-4401-acd4-de1884942a52
-rw-r--r--browser_object.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/browser_object.js b/browser_object.js
index 82226bd..4f7ed8d 100644
--- a/browser_object.js
+++ b/browser_object.js
@@ -1,6 +1,6 @@
// Vimperator plugin: 'Map behave like text-object'
// Version: 0.4
-// Last Change: 14-Sep-2008. Jan 2008
+// Last Change: 15-Sep-2008. Jan 2008
// License: Creative Commons
// Maintainer: Trapezoid <trapezoid.g@gmail.com> - http://unsigned.g.hatena.ne.jp/Trapezoid
//
@@ -71,7 +71,7 @@
var copyStrings = [];
for(var i = 0 ; i < ary.length; i++)
if(typeof ary[i] == "object")
- copyStrings.push(i.linkedBrowser.contentDocument.location.href);
+ copyStrings.push(ary[i].linkedBrowser.contentDocument.location.href);
liberator.util.copyToClipboard(copyStrings.join(", "));
},
reload: function(ary){