39,824 results for 'Backbone.Collection.extend' (776 ms)
backbone.js git://github.com/maccman/book-assets.git | JavaScript | 1,085 lines
938 // Set up inheritance for the model, collection, and view. 939 Backbone.Model.extend = Backbone.Collection.extend = 940 Backbone.Controller.extend = Backbone.View.extend = extend;backbone-0.9.1-amd.js git://github.com/jspears/bobamo.git | JavaScript | 1,287 lines
1143 // Set up inheritance for the model, collection, and view. 1144 Backbone.Model.extend = Backbone.Collection.extend = 1145 Backbone.Router.extend = Backbone.View.extend = extend;backbone.js git://github.com/jspears/bobamo.git | JavaScript | 1,165 lines
1014 // Set up inheritance for the model, collection, and view. 1015 Backbone.Model.extend = Backbone.Collection.extend = 1016 Backbone.Router.extend = Backbone.View.extend = extend;backbone.js git://github.com/zgrossbart/jslim.git | JavaScript | 1,158 lines
1008 // Set up inheritance for the model, collection, and view. 1009 Backbone.Model.extend = Backbone.Collection.extend = 1010 Backbone.Router.extend = Backbone.View.extend = extend;backbone.js git://github.com/andrewdavey/cassette.git | JavaScript | 1,290 lines
1147 // Set up inheritance for the model, collection, and view. 1148 Backbone.Model.extend = Backbone.Collection.extend = 1149 Backbone.Router.extend = Backbone.View.extend = extend;backbone.js https://bitbucket.org/ahristov/js.projects.pub-labs.git | JavaScript | 1,256 lines
1113 // Set up inheritance for the model, collection, and view. 1114 Backbone.Model.extend = Backbone.Collection.extend = 1115 Backbone.Router.extend = Backbone.View.extend = extend;backbone.js https://bitbucket.org/moonboots/backbone-everywhere.git | JavaScript | 1,149 lines
1002 // Set up inheritance for the model, collection, and view. 1003 Backbone.Model.extend = Backbone.Collection.extend = 1004 Backbone.Router.extend = Backbone.View.extend = extend;index.html https://bitbucket.org/moonboots/backbone-everywhere.git | HTML | 2,863 lines
1049 <p id="Collection-extend"> 1050 <b class="header">extend</b><code>Backbone.Collection.extend(properties, [classProperties])</code> 1051 <br /> 1067<pre> 1068var Library = Backbone.Collection.extend({ 1069 model: Book 1310<pre> 1311var Notes = Backbone.Collection.extend({ 1312 url: '/notes' 1316 1317var Notes = Backbone.Collection.extend({ 1318 url: function() { 1336<pre> 1337var Tweets = Backbone.Collection.extend({ 1338 // The Twitter Search API returns tweets under "results".backbone.js https://bitbucket.org/moonboots/backbone-everywhere.git | JavaScript | 1,158 lines
1008 // Set up inheritance for the model, collection, and view. 1009 Backbone.Model.extend = Backbone.Collection.extend = 1010 Backbone.Router.extend = Backbone.View.extend = extend;backbone.js https://bitbucket.org/okfn/_assets.okfn.org.git | JavaScript | 1,011 lines
876 // Set up inheritance for the model, collection, and view. 877 Backbone.Model.extend = Backbone.Collection.extend = 878 Backbone.Controller.extend = Backbone.View.extend = extend;backbone.js https://bitbucket.org/puxlit/aui-archive.git | JavaScript | 1,017 lines
882 // Set up inheritance for the model, collection, and view. 883 Backbone.Model.extend = Backbone.Collection.extend = 884 Backbone.Controller.extend = Backbone.View.extend = extend;backbone.js https://bitbucket.org/edwardstlouis/backbonepeep1.git | JavaScript | 1,149 lines
1002 // Set up inheritance for the model, collection, and view. 1003 Backbone.Model.extend = Backbone.Collection.extend = 1004 Backbone.Router.extend = Backbone.View.extend = extend;backbone.js https://bitbucket.org/ewsdk/random_work.git | JavaScript | 1,289 lines
1145 // Set up inheritance for the model, collection, and view. 1146 Backbone.Model.extend = Backbone.Collection.extend = 1147 Backbone.Router.extend = Backbone.View.extend = extend;backbone.js https://bitbucket.org/taxilian/racecontrol5.git | JavaScript | 1,162 lines
1009 // Set up inheritance for the model, collection, and view. 1010 Backbone.Model.extend = Backbone.Collection.extend = 1011 Backbone.Router.extend = Backbone.View.extend = extend;backbone.js https://bitbucket.org/nguyenkha/quadratic-equation.git | JavaScript | 1,293 lines
1150 // Set up inheritance for the model, collection, and view. 1151 Backbone.Model.extend = Backbone.Collection.extend = 1152 Backbone.Router.extend = Backbone.View.extend = extend;backbone.js https://bitbucket.org/asheriff/bbclonemail-poc.git | JavaScript | 1,256 lines
1113 // Set up inheritance for the model, collection, and view. 1114 Backbone.Model.extend = Backbone.Collection.extend = 1115 Backbone.Router.extend = Backbone.View.extend = extend;ckanjs.js https://bitbucket.org/kindly/ckan2.git | JavaScript | 1,758 lines
521 // then be accessed via the `total` property. 522 Model.SearchCollection = Backbone.Collection.extend({ 523 constructor: function SearchCollection(models, options) {backbone.js https://bitbucket.org/laurenceputra/codegether.git | JavaScript | 1,253 lines
1109 // Set up inheritance for the model, collection, and view. 1110 Backbone.Model.extend = Backbone.Collection.extend = 1111 Backbone.Router.extend = Backbone.View.extend = extend;index.html https://bitbucket.org/ldiamond/urlshortener.git | HTML | 3,665 lines
1264 <p id="Collection-extend"> 1265 <b class="header">extend</b><code>Backbone.Collection.extend(properties, [classProperties])</code> 1266 <br /> 1282<pre> 1283var Library = Backbone.Collection.extend({ 1284 model: Book 1591<pre> 1592var Notes = Backbone.Collection.extend({ 1593 url: '/notes' 1597 1598var Notes = Backbone.Collection.extend({ 1599 url: function() { 1619<pre> 1620var Tweets = Backbone.Collection.extend({ 1621 // The Twitter Search API returns tweets under "results".collection.js https://bitbucket.org/ldiamond/urlshortener.git | JavaScript | 568 lines
176 177 var Col = Backbone.Collection.extend({model: Model}); 178 var col = new Col; 350 }); 351 var ValidatingCollection = Backbone.Collection.extend({ 352 model: ValidatingModel 363 }); 364 var ValidatingCollection = Backbone.Collection.extend({ 365 model: ValidatingModel 374 test("collection: initialize", function() { 375 var Collection = Backbone.Collection.extend({ 376 initialize: function() { 448 }); 449 var col = new (Backbone.Collection.extend({ model: Model }))(); 450 col.reset([{ astring: "green", anumber: 1 }, { astring: "blue", anumber: 2 }], { model_parameter: 'model parameter' });