aboutsummaryrefslogtreecommitdiffstats
path: root/nextlink.js
diff options
context:
space:
mode:
Diffstat (limited to 'nextlink.js')
-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];
- });
+ }));
}
};//}}}