helper should retain context

This commit is contained in:
Sam 2014-12-31 12:30:48 +11:00
parent 8524a9d94b
commit 7707803201
1 changed files with 1 additions and 1 deletions

View File

@ -26,6 +26,6 @@ export default function registerUnbound(name, fn) {
}
}
return fn(property, params);
return fn.apply(this,[property, params]);
});
}