diff --git a/src/pixi/utils/Utils.js b/src/pixi/utils/Utils.js index f374d7e..0ed9b16 100644 --- a/src/pixi/utils/Utils.js +++ b/src/pixi/utils/Utils.js @@ -91,7 +91,7 @@ var i = arguments.length, args = new Array(i); while (i--) args[i] = arguments[i]; args = boundArgs.concat(args); - target.apply(this instanceof bound ? this : thisArg, args); + return target.apply(this instanceof bound ? this : thisArg, args); } bound.prototype = (function F(proto) {