Created
June 3, 2014 19:03
-
-
Save edwardtanguay/f93dbf79a9a718de9ba3 to your computer and use it in GitHub Desktop.
Revisions
-
edwardtanguay created this gist
Jun 3, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,2 @@ <script src="http://jashkenas.github.io/underscore/underscore-min.js"></script> <script src="http://jashkenas.github.io/backbone/backbone-min.js"></script> This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ var TaskModel = Backbone.Model.extend ({ defaults : { title : '', description : '', score : 55 }, initialize : function() { console.log('in init'); } }); var taskModel = new TaskModel(); console.log(taskModel.toJSON());