diff --git a/backbone.js b/backbone.js index 38cc9912..dc364881 100644 --- a/backbone.js +++ b/backbone.js @@ -1499,7 +1499,7 @@ if (protoProps && _.has(protoProps, 'constructor')) { child = protoProps.constructor; } else { - child = function(){ parent.apply(this, arguments); }; + child = function(){ return parent.apply(this, arguments); }; } // Add static properties to the constructor function, if supplied.