39,824 results for 'Backbone.Collection.extend' (1267 ms)
index.html https://github.com/anushr/backbone.git | HTML | 3,519 lines
1238 <p id="Collection-extend"> 1239 <b class="header">extend</b><code>Backbone.Collection.extend(properties, [classProperties])</code> 1240 <br /> 1256<pre> 1257var Library = Backbone.Collection.extend({ 1258 model: Book 1517<pre> 1518var Notes = Backbone.Collection.extend({ 1519 url: '/notes' 1523 1524var Notes = Backbone.Collection.extend({ 1525 url: function() { 1545<pre> 1546var Tweets = Backbone.Collection.extend({ 1547 // The Twitter Search API returns tweets under "results".collection.js https://github.com/Flushot/backbone.git | JavaScript | 593 lines
129 test("Collection: add; at should have preference over comparator", function() { 130 var Col = Backbone.Collection.extend({ 131 comparator: function(a,b) { 198 199 var Col = Backbone.Collection.extend({model: Model}); 200 var col = new Col; 372 }); 373 var ValidatingCollection = Backbone.Collection.extend({ 374 model: ValidatingModel 385 }); 386 var ValidatingCollection = Backbone.Collection.extend({ 387 model: ValidatingModel 396 test("collection: initialize", function() { 397 var Collection = Backbone.Collection.extend({ 398 initialize: function() {index.html https://github.com/jcteague/backbone.git | HTML | 3,668 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".model.js https://github.com/huangbaihua001/backbone.git | JavaScript | 1,111 lines
3 var proxy = Backbone.Model.extend(); 4 var klass = Backbone.Collection.extend({ 5 url : function() { return '/collection'; }step-by-step-modules.md https://github.com/bgabel/writings.git | Unknown | 762 lines
22 23var Statuses = Backbone.Collection.extend({ 24 model: Status 175 176 var Statuses = Backbone.Collection.extend({ 177 model: Status 264 265 var Statuses = Backbone.Collection.extend({ 266 model: Status 350- 351- var Statuses = Backbone.Collection.extend({ 352- model: Status 403 404 var Statuses = Backbone.Collection.extend({ 405 model: Statusbackbone-stack.rst https://github.com/htulipe/resthub.org.git | Unknown | 2,461 lines
96 │ ├── collection 97 │ │ ├── users.js var Users = Backbone.Collection.extend(...); return Users; 98 │ │ └── projects.js var Projects = Backbone.Collection.extend(...); return Projects;backbone.rst https://github.com/htulipe/resthub.org.git | Unknown | 1,161 lines
302 303 var Tasks = Backbone.Collection.extend(); 304 1150 define(['backbone', 'models/task'], function(Backbone, Task) { 1151 var Tasks = Backbone.Collection.extend({ 1152 url: 'api/task',06-extensions.md https://github.com/bicccio/backbone-fundamentals.git | Unknown | 1,126 lines
744 745 Todos.TodoList = Backbone.Collection.extend({ 746 model: Todos.Todo,model.js https://github.com/philipp-spiess/backbone.git | JavaScript | 1,112 lines
3 var proxy = Backbone.Model.extend(); 4 var klass = Backbone.Collection.extend({ 5 url : function() { return '/collection'; }model.js https://github.com/nicolasmccurdy/scrabbli.js.git | JavaScript | 1,103 lines
3 var proxy = Backbone.Model.extend(); 4 var klass = Backbone.Collection.extend({ 5 url : function() { return '/collection'; }model.js https://github.com/pomidorus/backbone-associations.git | JavaScript | 1,107 lines
7 var proxy = Backbone.Model.extend(); 8 var klass = Backbone.Collection.extend({ 9 url : function() { return '/collection'; }compositeView.spec.js https://github.com/cf-ssharma/backbone.marionette.git | JavaScript | 711 lines
686 687 var Collection = Backbone.Collection.extend({ 688 model: Model 690 691 var UserCollection = Backbone.Collection.extend({ 692 model: User 694 695 var NodeCollection = Backbone.Collection.extend({ 696 model: Nodemodel.js https://github.com/fantactuka/backbone.git | JavaScript | 1,131 lines
3 var proxy = Backbone.Model.extend(); 4 var klass = Backbone.Collection.extend({ 5 url : function() { return '/collection'; }documentation.html https://github.com/anthonybrown/backbone.epoxy.git | HTML | 795 lines
573// Collection defining a Model and View: 574var ListCollection = Backbone.Collection.extend({ 575 model: Backbone.Model,backbone.js https://github.com/dinja/backbone-boilerplates.git | JavaScript | 1,232 lines
1088 // Set up inheritance for the model, collection, and view. 1089 Backbone.Model.extend = Backbone.Collection.extend = 1090 Backbone.Router.extend = Backbone.View.extend = extend;model.js https://github.com/notatestuser/backbone-deep-model.git | JavaScript | 1,081 lines
8 var proxy = Backbone.Model.extend(); 9 var klass = Backbone.Collection.extend({ 10 url : function() { return '/collection'; }model.js https://github.com/auggernaut/backbone-query-parameters.git | JavaScript | 1,067 lines
3 var proxy = Backbone.Model.extend(); 4 var klass = Backbone.Collection.extend({ 5 url : function() { return '/collection'; }model.js https://github.com/jessepinuelas/backbone.git | JavaScript | 1,007 lines
3 var proxy = Backbone.Model.extend(); 4 var klass = Backbone.Collection.extend({ 5 url : function() { return '/collection'; }model.js https://github.com/balanceiskey/backbone.git | JavaScript | 1,086 lines
3 var proxy = Backbone.Model.extend(); 4 var klass = Backbone.Collection.extend({ 5 url : function() { return '/collection'; }thorax.js https://github.com/gigfork/spring-mobile-samples.git | JavaScript | 1,283 lines
1197 1198 Thorax.Collection = Backbone.Collection.extend({ 1199 model: Thorax.Model, 1219 Thorax.Collection.extend = function(protoProps, classProps) { 1220 var child = Backbone.Collection.extend.call(this, protoProps, classProps); 1221 if (child.prototype.name) {