Just getting started with Backbone.js. Simply including Backbone (either dev/production versions) causes the error:

Uncaught TypeError: Cannot call method 'extend' of undefined on Line 128:

// Attach all inheritable methods to the Model prototype. _.extend(Backbone.Model.prototype, Backbone.Events, {

link|improve this question

70% accept rate
Question: Are you combining it with any other JS libraries as well as Backbone? Have you tried seeing if you still get the error without them? – Spudley Feb 2 '11 at 15:26
It's a brand new Rails app; I'm not even loading jQuery! :) – Matt Darby Feb 2 '11 at 15:36
feedback

1 Answer

up vote 55 down vote accepted

The issue was that I wan't loading underscore.js. I totally missed that dependency in the docs. Duh.

link|improve this answer
Thank you so much, was puzzled what I am doing wrong, and why I can't even load the backbone! – Victor Farazdagi Sep 23 '11 at 8:37
9  
I had underscore, but loaded in the wrong order, first load underscore (guess that is what 'dependency' means :) – Tjorriemorrie Jan 27 at 15:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.