aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsuVene2008-12-13 12:59:51 +0000
committersuVene2008-12-13 12:59:51 +0000
commitab75fbeb6d8bee69476096c1c7e9380da4ad149c (patch)
treeb350a486a62bbc64cba60e6442efb8fbfc01b520
parent0f03682e899672aaad9def42def2b5e13dc231d2 (diff)
downloadvimperator-plugins-ab75fbeb6d8bee69476096c1c7e9380da4ad149c.tar.bz2
bugfix.
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@26638 d0d07461-0603-4401-acd4-de1884942a52
-rwxr-xr-xnextlink.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/nextlink.js b/nextlink.js
index 512202b..2de72d7 100755
--- a/nextlink.js
+++ b/nextlink.js
@@ -169,9 +169,9 @@ liberator.plugins.nextlink = (function() {
if (!this.cache[key]) this.cache[key] = {};
values = [].concat(values);
- [].concat(subKeys).forEach(function(subKey, i) {
+ [].concat(subKeys).forEach($U.bind(this, function(subKey, i) {
this.cache[key][subKey] = values[i];
- });
+ }));
}
};//}}}