Commit b03d9390 by Julian Arni

Pass arguments from ctxCall forward to set state

parent 9d49a0e8
......@@ -24,7 +24,11 @@
oldthis.pop();
oldthis = oldthis.join();
var newthis = _deepKey(obj, oldthis);
return func.apply(newthis);
var args = Array.prototype.slice.call(arguments);
args = args.slice(2, args.length);
return func.apply(newthis, args);
};
// First time this function was called?
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment