diff --git a/backbone.js b/backbone.js index 47e85aeb..d1376505 100644 --- a/backbone.js +++ b/backbone.js @@ -931,7 +931,7 @@ // The self-propagating extend function that Backbone classes use. var extend = function (protoProps, classProps) { var child = inherits(this, protoProps, classProps); - child.extend = extend; + child.extend = this.extend; return child; };