From 37c405280ef2f2ec65b0aa722d3b017ad1f51376 Mon Sep 17 00:00:00 2001 From: tbranyen Date: Tue, 13 Dec 2011 23:07:40 -0500 Subject: [PATCH] put __super__ on the prototype --- backbone.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backbone.js b/backbone.js index 69ce1168d..6ebc6c901 100644 --- a/backbone.js +++ b/backbone.js @@ -1133,7 +1133,7 @@ child.prototype.constructor = child; // Set a convenience property in case the parent's prototype is needed later. - child.__super__ = parent.prototype; + child.prototype.__super__ = parent.prototype; return child; };