Merge pull request #8263 from ClaytonPassmore/master

Pass the arguments to the callback in the on_some_change function
Jonathan Frederic 11 years ago
commit e0c545f75e

@ -416,7 +416,7 @@ define(["widgets/js/manager",
*/
this.on('change', function() {
if (keys.some(this.hasChanged, this)) {
callback.apply(context);
callback.apply(context, arguments);
}
}, this);

Loading…
Cancel
Save