100+ results for 'Backbone.Collection.extend'

Not the results you expected?

modelcollections.js (git://github.com/jspears/bobamo.git) JavaScript · 125 lines

40

41 });

42 var Collection = Backbone.Collection.extend({

43 model: Model,

44 url:'${api}/${urlRoot}',

InstanceModel.js (git://github.com/ging/horizon-js.git) JavaScript · 204 lines

186 });

187

188 var Instances = Backbone.Collection.extend({

189

190 model: Instance,

localforage.backbone.js (https://bitbucket.org/aswinvk28/smartpan-stock-drupal.git) JavaScript · 189 lines

15 //

16 // var MyModel = Backbone.Model.extend({})

17 // var MyCollection = Backbone.Collection.extend({

18 // model: MyModel

19 // });

21 // becomes

22 //

23 // var MyModel = Backbone.Collection.extend({

24 // sync: Backbone.localforage.sync('ModelNamespace')

25 // });

26 // var MyCollection = Backbone.Collection.extend({

27 // model: MyModel,

28 // sync: Backbone.localforage.sync('MyCollection')

spiro-models.js (https://hg.codeplex.com/restfulobjects) JavaScript · 256 lines

218

219 // matches a list representation 11.0

220 roc.LinkList = Backbone.Collection.extend({

221 model: roc.Link,

222

sync.js (git://github.com/documentcloud/backbone.git) JavaScript · 239 lines

1 (function(QUnit) {

2

3 var Library = Backbone.Collection.extend({

4 url: function() { return '/library'; }

5 });

myMessage.js (https://git01.codeplex.com/mobileshop) JavaScript · 103 lines

3 });

4

5 window.MessageList = Backbone.Collection.extend({

6 model: Message,

7 urlRoot: 'api/membermessage/list/',

Todo.js (git://github.com/radekstepan/fundamental.js.git) JavaScript · 59 lines

23

24 // The collection of todos is backed by *localStorage* instead of a remote server.

25 var TodoList = Backbone.Collection.extend({

26

27 // Reference to this collection's model.

collection-model.js (https://bitbucket.org/hbc/galaxy-central-hbc/) JavaScript · 251 lines

88 * @constructs

89 */

90 var DatasetCollectionElementCollection = Backbone.Collection.extend( BASE_MVC.LoggableMixin ).extend(

91 /** @lends DatasetCollectionElementCollection.prototype */{

92 model: DatasetCollectionElement,

176 //==============================================================================

177 /** @class Backbone collection for a collection of collection collections collecting correctly. */

178 var DatasetCollectionCollection = Backbone.Collection.extend( BASE_MVC.LoggableMixin ).extend({

179

180 model: DatasetCollection,

myOrder.js (https://git01.codeplex.com/mobileshop) JavaScript · 101 lines

46 });

47

48 window.OrderList = Backbone.Collection.extend({

49 model: Order,

50 urlRoot: 'api/order/member/',

app.js (git://github.com/andrewdavey/cassette.git) JavaScript · 172 lines

20 });

21

22 window.TodoList = Backbone.Collection.extend({

23

24 model: Todo,

proposal-edit.js (https://bitbucket.org/dwaiter/proposalmatic/) JavaScript · 206 lines ✨ Summary

This JavaScript code sets up a web application for managing proposal snippets, including creating and editing proposals, adding and removing snippets, and reordering snippets within a proposal. It uses Backbone.js to manage data and views, and jQuery to handle DOM interactions and AJAX requests. The application also includes features like sorting and dragging snippets.

58

59 // Library Snippets ------------------------------------------------------------

60 window.LibrarySnipList = Backbone.Collection.extend({

61 model: SnippetVersion,

62 url: '/snippets/a/snippetversion/'

105

106 // Proposal Snippets -----------------------------------------------------------

107 window.ProposalSnipList = Backbone.Collection.extend({

108 model: SnippetVersion,

109 url: '/snippets/a/snippetversion/'

sessions.js (git://github.com/NancyFx/Nancy.git) JavaScript · 60 lines

4 Session.Model = Backbone.Model.extend({});

5

6 Session.Collection = Backbone.Collection.extend({

7 model: Session.Model,

8

FieldModel.js (git://github.com/drupal/drupal.git) JavaScript · 92 lines

87 });

88

89 Drupal.quickedit.FieldCollection = Backbone.Collection.extend({

90 model: Drupal.quickedit.FieldModel

91 });

employee.js (git://github.com/jspears/bobamo.git) JavaScript · 64 lines

33 });

34

35 var EmployeeCollection = Backbone.Collection.extend({

36

37 model:Employee,

main.js (https://bitbucket.org/saritafurtado/backbone.git) JavaScript · 214 lines

15 });

16

17 window.WineCollection = Backbone.Collection.extend({

18 model:Wine,

19 url:"https://apid.numadic.com/3pl/trips?page=0&limit=25&q=&status=inprogress&email=sarita@numadic.com",

app.js (git://github.com/mdp/middlefiddle.git) JavaScript · 203 lines

50 });

51

52 window.Requests = Backbone.Collection.extend({

53 model: Request,

54 url: function() {

production-admin.js (git://github.com/tekpub/mvc3.git) JavaScript · 298 lines

15 }

16 });

17 Episodes = Backbone.Collection.extend({

18 model: Episode,

19 url: function () {

50

51 });

52 Productions = Backbone.Collection.extend({

53 model : Production,

54 url : "/api/productions"

main.js (https://bitbucket.org/ldavismead/backbone-twitter-search) JavaScript · 191 lines

40 });

41

42 var Tweets = Backbone.Collection.extend({

43 model: Tweet

44 });

ImageModel.js (git://github.com/ging/horizon-js.git) JavaScript · 41 lines

24 });

25

26 var Images = Backbone.Collection.extend({

27 model: Image,

28

user-model.js (https://bitbucket.org/chapmanb/galaxy-central/) JavaScript · 100 lines

93

94 // (stub) collection for users (shouldn't be common unless admin UI)

95 var UserCollection = Backbone.Collection.extend( LoggableMixin ).extend({

96 model : User,

97 urlRoot : 'api/users'

tours.js (https://bitbucket.org/galaxy/galaxy-central/) JavaScript · 131 lines

61 });

62

63 var Tours = Backbone.Collection.extend({

64 url: gxy_root + 'api/tours',

65 model: TourItem,

file.js (https://gitlab.com/henrymazer/carto-db.git) JavaScript · 165 lines

5 });

6

7 cdb.admin.Files = Backbone.Collection.extend({

8 url: '/api/v1/upload'

9 });

todos.js (git://github.com/maccman/book-assets.git) JavaScript · 164 lines

12 });

13

14 window.TodoList = Backbone.Collection.extend({

15 model: Todo,

16

social_subscription.js (https://github.com/samuelclay/NewsBlur.git) JavaScript · 114 lines

52 });

53

54 NEWSBLUR.Collections.SocialSubscriptions = Backbone.Collection.extend({

55

56 model : NEWSBLUR.Models.SocialSubscription,

user-model.js (https://bitbucket.org/chapmanb/galaxy-central/) JavaScript · 1 lines

1 var User=Backbone.Model.extend(LoggableMixin).extend({urlRoot:"api/users",defaults:{id:null,username:"("+_l("anonymous user")+")",email:"",total_disk_usage:0,nice_total_disk_usage:"",quota_percent:null},initialize:function(a){this.log("User.initialize:",a);this.on("loaded",function(b,c){this.log(this+" has loaded:",b,c)});this.on("change",function(b,c){this.log(this+" has changed:",b,c.changes)})},isAnonymous:function(){return(!this.get("email"))},loadFromApi:function(d,b){d=d||User.CURRENT_ID_STR;b=b||{};var a=this,c=b.success;b.success=function(f,e){a.trigger("loaded",f,e);if(c){c(f,e)}};if(d===User.CURRENT_ID_STR){b.url=this.urlRoot+"/"+User.CURRENT_ID_STR}return BaseModel.prototype.fetch.call(this,b)},toString:function(){var a=[this.get("username")];if(this.get("id")){a.unshift(this.get("id"));a.push(this.get("email"))}return"User("+a.join(":")+")"}});User.CURRENT_ID_STR="current";User.getCurrentUserFromApi=function(b){var a=new User();a.loadFromApi(User.CURRENT_ID_STR,b);return a};var UserCollection=Backbone.Collection.extend(LoggableMixin).extend({model:User,urlRoot:"api/users"});

visualization-model.js (https://bitbucket.org/cistrome/cistrome-harvard/) JavaScript · 1 lines

1 var Visualization=Backbone.Model.extend({defaults:{config:{}},urlRoot:function(){var a="/api/visualizations";return((window.galaxy_config&&galaxy_config.root)?(galaxy_config.root+a):(a))},initialize:function(a){if(_.isObject(a.config)&&_.isObject(this.defaults.config)){_.defaults(a.config,this.defaults.config)}this._setUpListeners()},_setUpListeners:function(){},set:function(b,c){if(b==="config"){var a=this.get("config");if(_.isObject(a)){c=_.extend(_.clone(a),c)}}Backbone.Model.prototype.set.call(this,b,c);return this},toString:function(){var a=this.get("id")||"";if(this.get("title")){a+=":"+this.get("title")}return"Visualization("+a+")"}});var VisualizationCollection=Backbone.Collection.extend({model:Visualization,url:function(){return galaxy_config.root+"api/visualizations"},initialize:function(b,a){a=a||{}},set:function(c,a){var b=this;c=_.map(c,function(e){var f=b.get(e.id);if(!f){return e}var d=f.toJSON();_.extend(d,e);return d});Backbone.Collection.prototype.set.call(this,c,a)},toString:function(){return(["VisualizationCollection(",[this.historyId,this.length].join(),")"].join(""))}});

datasets.js (https://bitbucket.org/hbc/galaxy-central-hbc/) JavaScript · 377 lines

5 * This class handles, formats and caches datasets.

6 */

7 return Backbone.Collection.extend(

8 {

9 // list of datasets

IgniteWorkflows.js (https://bitbucket.org/ahmed_bilal_360factors/jira7-core.git) JavaScript · 76 lines

7 var localeComparator = require('jira-project-config/workflows/tab/utils/locale-comparator');

8

9 return Backbone.Collection.extend({

10 model: IgniteWorkflowModel,

11 update: function (newCollection) {

traces.js (git://github.com/NancyFx/Nancy.git) JavaScript · 81 lines

4 Trace.Model = Backbone.Model.extend({});

5

6 Trace.Collection = Backbone.Collection.extend({

7 model: Trace.Model,

8

ReportCollection.js (https://bitbucket.org/AnuSekar/btree_pos.git) JavaScript · 885 lines

357 });

358

359 admin.SalesDetailItemReportCollection = Backbone.Collection.extend({

360 model: admin.SalesDetailsItemReportModel,

361 url: '/btree/admin/get_all_detailsales_item',

366 });

367

368 admin.ClaimPointsReportCollection = Backbone.Collection.extend({

369 model: admin.SalesDetailsItemReportModel,

370 url: '/btree/admin/customer_pointclaim',

myCart.js (https://git01.codeplex.com/mobileshop) JavaScript · 206 lines

6 });

7

8 window.MyCartList = Backbone.Collection.extend({

9 model: MyCart,

10 urlRoot: 'api/shoppingcart/',

starred_counts.js (https://github.com/samuelclay/NewsBlur.git) JavaScript · 89 lines

32 });

33

34 NEWSBLUR.Collections.StarredFeeds = Backbone.Collection.extend({

35

36 model: NEWSBLUR.Models.StarredFeed,

user-model.js (https://bitbucket.org/hbc/galaxy-central-hbc/) JavaScript · 131 lines

118

119 // (stub) collection for users (shouldn't be common unless admin UI)

120 var UserCollection = Backbone.Collection.extend( baseMVC.LoggableMixin ).extend({

121 model : User,

122 urlRoot : galaxy_config.root + 'api/users'

list.js (https://bitbucket.org/nicjen/lgv.git) JavaScript · 162 lines

28 ThemeList;

29

30 ThemeList = Backbone.Collection.extend({

31 model: function (attrs, options) {

32 if (attrs.gfiTheme === "table") {

providers.js (git://github.com/NancyFx/Nancy.git) JavaScript · 60 lines

4 Provider.Model = Backbone.Model.extend({});

5

6 Provider.Collection = Backbone.Collection.extend({

7 model: Provider.Model,

8

citation-model.js (https://bitbucket.org/hbc/galaxy-central-hbc/) JavaScript · 73 lines

42 * @constructs

43 */

44 var BaseCitationCollection = Backbone.Collection.extend( baseMVC.LoggableMixin ).extend( {

45 /** root api url */

46 urlRoot : galaxy_config.root + 'api',

methods.js (git://github.com/NancyFx/Nancy.git) JavaScript · 100 lines

4 Method.Model = Backbone.Model.extend({});

5

6 Method.Collection = Backbone.Collection.extend({

7 model: Method.Model,

8

models.js (git://github.com/overviewer/Minecraft-Overviewer.git) JavaScript · 48 lines

15 * A collection of WorldModels

16 */

17 overviewer.models.WorldCollection = Backbone.Collection.extend({

18 model: overviewer.models.WorldModel

19 });

34 });

35

36 overviewer.models.TileSetCollection = Backbone.Collection.extend({

37 model: overviewer.models.TileSetModel

38 });

comments.js (https://github.com/samuelclay/NewsBlur.git) JavaScript · 48 lines

26 });

27

28 NEWSBLUR.Collections.Comments = Backbone.Collection.extend({

29

30 url: '/social/comments',

42 });

43

44 NEWSBLUR.Collections.CommentReplies = Backbone.Collection.extend({

45

46 model: NEWSBLUR.Models.CommentReply

VolumeSnapshotModel.js (git://github.com/ging/horizon-js.git) JavaScript · 59 lines

41 });

42

43 var VolumeSnapshots = Backbone.Collection.extend({

44

45 model: VolumeSnapshot,

dispatchMode.js (https://git01.codeplex.com/mobileshop) JavaScript · 62 lines

1 window.DispatchMode = Backbone.Model.extend({});

2

3 window.DispatchModeList = Backbone.Collection.extend({

4 model: DispatchMode,

5 urlRoot: 'api/dispatchmode',

coupon.js (https://git01.codeplex.com/mobileshop) JavaScript · 96 lines

1 window.Activity = Backbone.Model.extend({});

2

3 window.ActivityList = Backbone.Collection.extend({

4 model: Activity,

5 urlRoot: 'api/promotionbyprice/',

library-model.js (https://bitbucket.org/hbc/galaxy-central-hbc/) JavaScript · 205 lines

19 });

20

21 var Libraries = Backbone.Collection.extend({

22 url: '/api/libraries',

23

92 });

93

94 var Folder = Backbone.Collection.extend({

95 model: Item,

96

169 });

170

171 var HistoryContents = Backbone.Collection.extend({

172 urlRoot : '/api/histories/',

173 initialize: function(options){

model.js (https://bitbucket.org/deximer/generalwill) JavaScript · 246 lines

52 });

53

54 window.GroupPriorities = Backbone.Collection.extend({

55 model : window.Priority,

56 url : function() {

partCollection.js (https://bitbucket.org/djmdigital/total-auto-care-wordpress.git) JavaScript · 149 lines

1 define( [ 'models/partModel' ], function( PartModel ) {

2 var collection = Backbone.Collection.extend( {

3 model: PartModel,

4 currentElement: false,

baseCollection.es6.js (git://github.com/reviewboard/reviewboard.git) JavaScript · 58 lines

5 * some useful additional abilities.

6 */

7 RB.BaseCollection = Backbone.Collection.extend({

8 /**

9 * Fetch models from the server.

tiles.js (https://bitbucket.org/dbezrukov/photoload.git) JavaScript · 86 lines

10 var somePhotosLoaded = false;

11

12 return Backbone.Collection.extend({

13 model: Tile,

14 url: '/tiles',

photos_bla.js (https://bitbucket.org/dbezrukov/photoload.git) JavaScript · 142 lines

10 var somePhotosLoaded = false;

11

12 return Backbone.Collection.extend({

13 model: Photo,

14 url: '/photo/bla',

user-model.js (https://bitbucket.org/galaxy/galaxy-central/) JavaScript · 127 lines

114

115 // (stub) collection for users (shouldn't be common unless admin UI)

116 var UserCollection = Backbone.Collection.extend( baseMVC.LoggableMixin ).extend({

117 model : User,

118 urlRoot : function(){ return Galaxy.root + 'api/users'; },

FlavorModel.js (git://github.com/ging/horizon-js.git) JavaScript · 49 lines

28 });

29

30 var Flavors = Backbone.Collection.extend({

31 model: Flavor,

32

model.js (https://bitbucket.org/okfn/wdmmg/) JavaScript · 68 lines

21 }

22 });

23 var DataStoreCollection = Backbone.Collection.extend({

24 url: function(){

25 return my.config.endpoint + this.name;

library-model.js (https://bitbucket.org/galaxy/galaxy-central/) JavaScript · 247 lines

19 });

20

21 var Libraries = Backbone.Collection.extend({

22 url: Galaxy.root + 'api/libraries',

23

110 });

111

112 var Folder = Backbone.Collection.extend({

113 model: LibraryItem,

114

199 });

200

201 var HistoryContents = Backbone.Collection.extend({

202 urlRoot : Galaxy.root + 'api/histories/',

203 initialize: function(options){

sits.js (https://bitbucket.org/dbezrukov/photoload.git) JavaScript · 86 lines

10 var somePhotosLoaded = false;

11

12 return Backbone.Collection.extend({

13 model: Sit,

14 url: '/sits',

KeypairModel.js (git://github.com/ging/horizon-js.git) JavaScript · 40 lines

18 });

19

20 var Keypairs = Backbone.Collection.extend({

21 model: Keypair,

22

VolumeModel.js (git://github.com/ging/horizon-js.git) JavaScript · 57 lines

39 });

40

41 var Volumes = Backbone.Collection.extend({

42

43 model: Volume,

icon-button.js (https://bitbucket.org/galaxy/galaxy-central/) JavaScript · 184 lines

104

105 // define collection

106 var IconButtonCollection = Backbone.Collection.extend({

107 model: IconButton

108 });

app.js (git://github.com/pieter-vanderwerff/backbone-require-wire.git) JavaScript · 68 lines

23

24 var view = new View(),

25 collection = new ( Backbone.Collection.extend( {

26 done: function() { return []; },

27 remaining: function() { return []; }

ui-select-library.js (https://bitbucket.org/galaxy/galaxy-central/) JavaScript · 128 lines

4

5 // collection of libraries

6 var Libraries = Backbone.Collection.extend({

7 url: Galaxy.root + 'api/libraries?deleted=false'

8 });

9

10 // collection of dataset

11 var LibraryDatasets = Backbone.Collection.extend({

12 initialize: function() {

13 var self = this;

citation-model.js (https://bitbucket.org/galaxy/galaxy-central/) JavaScript · 75 lines

41 /** @class Backbone collection of citations.

42 */

43 var BaseCitationCollection = Backbone.Collection.extend( baseMVC.LoggableMixin ).extend( {

44 _logNamespace : logNamespace,

45

datasets.js (https://bitbucket.org/cistrome/cistrome-harvard/) JavaScript · 149 lines

3

4 // widget

5 return Backbone.Collection.extend(

6 {

7 // list of datasets

cellFieldCollection.js (https://bitbucket.org/djmdigital/total-auto-care-wordpress.git) JavaScript · 85 lines

8 */

9 define( [], function( ) {

10 var collection = Backbone.Collection.extend( {

11 comparator: 'cellOrder',

12

demo.js (https://gitlab.com/hecto932/WebAppRealTime.git) JavaScript · 218 lines

11 });

12

13 window.ToDoTaskCollection = Backbone.Collection.extend({

14

15 name : 'ToDoList',

README.md (https://bitbucket.org/aswinvk28/smartpan-stock-drupal.git) Markdown · 41 lines

20 override your objects' `sync()` method with the namespace for your model:

21

22 var MyModel = Backbone.Collection.extend({

23 sync: Backbone.localforage.sync('MyModel')

24 });

25 var MyCollection = Backbone.Collection.extend({

26 model: MyModel,

27 sync: Backbone.localforage.sync('MyCollection')

backbone-d3.js (git://github.com/jspears/bobamo.git) JavaScript · 78 lines

65 }

66 }),

67 PlotCollection:Backbone.Collection.extend({

68 initialize:function (models, settings) {

69 this.settings = settings || {};

base_jobs.js (https://gitlab.com/jack/chronos.git) JavaScript · 191 lines

17 var BaseJobsCollection;

18

19 BaseJobsCollection = Backbone.Collection.extend({

20

21 model: function(attributes, options) {

simple.html (https://bitbucket.org/aswinvk28/smartpan-stock-drupal.git) HTML · 82 lines

27 // We store offline data inside a collection. This is how we tell

28 // a model/collection to store data offline with localForage.

29 var MyCollection = Backbone.Collection.extend({

30 sync: Backbone.localforage.sync('MyCollection'),

31 model: Backbone.Model.extend({

client.js (git://github.com/cmpolis/Apples-and-Oranges.git) JavaScript · 215 lines

16 var Noun = Backbone.Model.extend();

17

18 var NounCollection = Backbone.Collection.extend({

19 model: Noun

20 });

72 var User = Backbone.Model.extend();

73

74 var UserCollection = Backbone.Collection.extend({

75 model: User

76 });

112 var PlayedNoun = Backbone.Model.extend();

113

114 var PlayedNounCollection = Backbone.Collection.extend({

115 model: PlayedNoun

116 });

visualization-model.js (https://bitbucket.org/cistrome/cistrome-harvard/) JavaScript · 143 lines

83 * @constructs

84 */

85 var VisualizationCollection = Backbone.Collection.extend(

86 /** @lends VisualizationCollection.prototype */{

87 model : Visualization,

UserModel.js (git://github.com/ging/horizon-js.git) JavaScript · 38 lines

21 });

22

23 var Users = Backbone.Collection.extend({

24 model: User,

25

collection-model.js (https://bitbucket.org/hbc/galaxy-central-hbc/) JavaScript · 1 lines

1 define(["mvc/dataset/hda-model","mvc/base-mvc","utils/localization"],function(g,i,c){var j=Backbone.Model.extend(i.LoggableMixin).extend({defaults:{id:null,model_class:"DatasetCollectionElement",element_identifier:null,element_index:null,element_type:null},initialize:function(l,k){this.info(this+".initialize:",l,k);k=k||{};this.object=this._createObjectModel();this.on("change:object",function(){this.object=this._createObjectModel()})},_createObjectModel:function(){if(_.isUndefined(this.object)){this.object=null}if(!this.get("object")){return this.object}var k=this.get("object");this.unset("object",{silent:true});this.debug("DCE, element_type:",this.get("element_type"));switch(this.get("element_type")){case"dataset_collection":this.object=new f(k);break;case"hda":this.object=new g.HistoryDatasetAssociation(k);break;default:throw new TypeError("Unknown element_type: "+this.get("element_type"))}return this.object},toString:function(){var k=(this.object)?(""+this.object):(this.get("element_identifier"));return(["DatasetCollectionElement(",k,")"].join(""))}});var d=Backbone.Collection.extend(i.LoggableMixin).extend({model:j,initialize:function(l,k){k=k||{};this.info(this+".initialize:",l,k)},toString:function(){return(["DatasetCollectionElementCollection(",this.length,")"].join(""))}});var f=Backbone.Model.extend(i.LoggableMixin).extend({defaults:{collection_type:"list"},collectionClass:d,initialize:function(l,k){this.info("DatasetCollection.initialize:",l,k);this.elements=this._createElementsModel();this.on("change:elements",function(){this.log("change:elements");this.elements=this._createElementsModel()})},_createElementsModel:function(){this.log("_createElementsModel",this.get("elements"),this.elements);var k=this.get("elements")||[];this.info("elements:",k);this.unset("elements",{silent:true});this.elements=new this.collectionClass(k);return this.elements},hasDetails:function(){return this.elements.length!==0},toString:function(){var k=[this.get("id"),this.get("name")||this.get("element_identifier")];return"DatasetCollection("+(k.join(","))+")"}});var h=Backbone.Collection.extend(i.LoggableMixin).extend({model:f,initialize:function(l,k){k=k||{};this.info("DatasetCollectionCollection.initialize:",l,k)},toString:function(){return(["DatasetCollectionCollection(",this.get("name"),")"].join(""))}});var e=f.extend({toString:function(){return(["ListDatasetCollection(",this.get("name"),")"].join(""))}});var b=f.extend({toString:function(){return(["PairDatasetCollection(",this.get("name"),")"].join(""))}});var a=f.extend({toString:function(){return(["ListPairedDatasetCollection(",this.get("name"),")"].join(""))}});return{DatasetCollectionElement:j,DatasetCollectionElementCollection:d,DatasetCollection:f,DatasetCollectionCollection:h,ListDatasetCollection:e,PairDatasetCollection:b,ListPairedDatasetCollection:a}});

library-model.js (https://bitbucket.org/galaxy/galaxy-central/) JavaScript · 2 lines

1 define([],function(){var a=Backbone.Model.extend({urlRoot:Galaxy.root+"api/libraries/",isVisible:function(a){var b=!0;return!a&&this.get("deleted")&&(b=!1),b}}),b=Backbone.Collection.extend({url:Galaxy.root+"api/libraries",model:a,sort_key:"name",sort_order:null,initialize:function(a){a=a||{}},search:function(a){if(""==a)return this;var b=a.toLowerCase();return this.filter(function(a){return lowercase_name=a.get("name").toLowerCase(),-1!==lowercase_name.indexOf(b)})},getVisible:function(a,c){c=c||[];var d=new b(this.filter(function(b){return b.isVisible(a)}));return d},sortByNameAsc:function(){return this.comparator=function(a,b){return a.get("name").toLowerCase()>b.get("name").toLowerCase()?1:b.get("name").toLowerCase()>a.get("name").toLowerCase()?-1:0},this.sort(),this},sortByNameDesc:function(){return this.comparator=function(a,b){return a.get("name").toLowerCase()>b.get("name").toLowerCase()?-1:b.get("name").toLowerCase()>a.get("name").toLowerCase()?1:0},this.sort(),this}}),c=Backbone.Model.extend({}),d=c.extend({urlRoot:Galaxy.root+"api/libraries/datasets/"}),e=c.extend({urlRoot:Galaxy.root+"api/folders/"}),f=Backbone.Collection.extend({model:c,sortByNameAsc:function(){return this.comparator=function(a,b){return a.get("type")===b.get("type")?a.get("name").toLowerCase()>b.get("name").toLowerCase()?1:b.get("name").toLowerCase()>a.get("name").toLowerCase()?-1:0:"folder"===a.get("type")?-1:1},this.sort(),this},sortByNameDesc:function(){return this.comparator=function(a,b){return a.get("type")===b.get("type")?a.get("name").toLowerCase()>b.get("name").toLowerCase()?-1:b.get("name").toLowerCase()>a.get("name").toLowerCase()?1:0:"folder"===a.get("type")?-1:1},this.sort(),this}}),g=Backbone.Model.extend({defaults:{folder:new f,urlRoot:Galaxy.root+"api/folders/",id:"unknown"},parse:function(a){this.get("folder").reset();for(var b=0;b<a.folder_contents.length;b++)if("folder"===a.folder_contents[b].type){var c=new e(a.folder_contents[b]);this.get("folder").add(c)}else if("file"===a.folder_contents[b].type){var f=new d(a.folder_contents[b]);this.get("folder").add(f)}else console.error("Unknown folder item type encountered while parsing response.");return a}}),h=Backbone.Model.extend({urlRoot:Galaxy.root+"api/histories/"}),i=Backbone.Collection.extend({urlRoot:Galaxy.root+"api/histories/",initialize:function(a){this.id=a.id},url:function(){return this.urlRoot+this.id+"/contents"},model:h}),j=Backbone.Model.extend({urlRoot:Galaxy.root+"api/histories/"}),k=Backbone.Collection.extend({url:Galaxy.root+"api/histories",model:j}),l=Backbone.Model.extend({urlRoot:Galaxy.root+"api/remote_files"});return{Library:a,Libraries:b,Item:d,Ldda:d,FolderAsModel:e,Folder:f,FolderContainer:g,HistoryItem:h,HistoryContents:i,GalaxyHistory:j,GalaxyHistories:k,Jstree:l}});

2 //# sourceMappingURL=../../../maps/mvc/library/library-model.js.map

collections.js (https://bitbucket.org/sqr3/dabbawala.git) JavaScript · 100 lines

5 'use strict';

6

7 app.searchTiffinboxSupplier = Backbone.Collection.extend({

8 initialize: function(options) {

9 this.options = options;

16

17

18 app.GetMenuDate = Backbone.Collection.extend({

19 initialize: function(options) {

20 this.options = options;

26 });

27 /////////////////////////////////

28 app.ProcessOrder = Backbone.Collection.extend({

29 initialize: function(options) {

30 this.options = options;

ui-select-library.js (https://bitbucket.org/galaxy/galaxy-central/) JavaScript · 2 lines

1 define(["utils/utils","mvc/ui/ui-misc","mvc/ui/ui-table","mvc/ui/ui-list"],function(a,b,c,d){var e=Backbone.Collection.extend({url:Galaxy.root+"api/libraries?deleted=false"}),f=Backbone.Collection.extend({initialize:function(){var a=this;this.config=new Backbone.Model({library_id:null}),this.config.on("change",function(){a.fetch({reset:!0})})},url:function(){return Galaxy.root+"api/libraries/"+this.config.get("library_id")+"/contents"}}),g=Backbone.View.extend({initialize:function(a){var c=this;this.libraries=new e,this.datasets=new f,this.options=a,this.library_select=new b.Select.View({onchange:function(a){c.datasets.config.set("library_id",a)}}),this.dataset_list=new d.View({name:"dataset",optional:a.optional,multiple:a.multiple,onchange:function(){c.trigger("change")}}),this.libraries.on("reset",function(){var a=[];c.libraries.each(function(b){a.push({value:b.id,label:b.get("name")})}),c.library_select.update(a)}),this.datasets.on("reset",function(){var a=[],b=c.library_select.text();null!==b&&c.datasets.each(function(b){"file"===b.get("type")&&a.push({value:b.id,label:b.get("name")})}),c.dataset_list.update(a)}),this.on("change",function(){a.onchange&&a.onchange(c.value())}),this.setElement(this._template()),this.$(".library-select").append(this.library_select.$el),this.$el.append(this.dataset_list.$el),this.libraries.fetch({reset:!0,success:function(){c.library_select.trigger("change"),void 0!==c.options.value&&c.value(c.options.value)}})},value:function(a){return this.dataset_list.value(a)},_template:function(){return'<div class="ui-select-library"><div class="library ui-margin-bottom"><span class="library-title">Select Library</span><span class="library-select"/></div></div>'}});return{View:g}});

2 //# sourceMappingURL=../../../maps/mvc/ui/ui-select-library.js.map

ProjectModel.js (git://github.com/ging/horizon-js.git) JavaScript · 35 lines

18 });

19

20 var Projects = Backbone.Collection.extend({

21 model: Project,

22

users.js (https://github.com/samuelclay/NewsBlur.git) JavaScript · 45 lines

31 });

32

33 NEWSBLUR.Collections.Users = Backbone.Collection.extend({

34

35 model : NEWSBLUR.Models.User,

models.js (git://pkgs.fedoraproject.org/aeolus-conductor) JavaScript · 88 lines

16 });

17

18 Conductor.Models.Pools = Backbone.Collection.extend({

19 model: Backbone.Model.Pool,

20 queryParams: {},

33 });

34

35 Conductor.Models.Instances = Backbone.Collection.extend({

36 model: Backbone.Model.Instance,

37 queryParams: {},

70 });

71

72 Conductor.Models.Deployments = Backbone.Collection.extend({

73 model: Backbone.Model.Deployment,

74 queryParams: {},

rave_backbone.js (https://gitlab.com/kidaa/rave.git) JavaScript · 84 lines

39 });

40

41 var Collection = Backbone.Collection.extend({

42 toViewModel: function () {

43 return this.map(function (model) {

job-model.js (https://bitbucket.org/galaxy/galaxy-central/) JavaScript · 2 lines

1 define(["mvc/history/history-contents","mvc/dataset/states","utils/ajax-queue","mvc/base-mvc","utils/localization"],function(a,b,c,d){var e="jobs",f=d.SearchableModelMixin,g=Backbone.Model.extend(d.LoggableMixin).extend(d.mixin(f,{_logNamespace:e,defaults:{model_class:"Job",tool_id:null,exit_code:null,inputs:{},outputs:{},params:{},create_time:null,update_time:null,state:b.NEW},parse:function(a){return a.params=this.parseParams(a.params),a},parseParams:function(a){var b={};return _.each(a,function(a,c){b[c]=JSON.parse(a)}),b},initialize:function(b,c){this.debug(this+"(Job).initialize",b,c),this.set("params",this.parseParams(this.get("params")),{silent:!0}),this.outputCollection=b.outputCollection||new a.HistoryContents([]),this._setUpListeners()},_setUpListeners:function(){this.on("change:state",function(a,b){this.log(this+" has changed state:",a,b),this.inReadyState()&&this.trigger("state:ready",a,b,this.previous("state"))})},inReadyState:function(){return _.contains(b.READY_STATES,this.get("state"))},hasDetails:function(){return!_.isEmpty(this.get("outputs"))},urlRoot:Galaxy.root+"api/jobs",toString:function(){return["Job(",this.get("id"),":",this.get("tool_id"),")"].join("")}})),h=Backbone.Collection.extend(d.LoggableMixin).extend({_logNamespace:e,model:g,urlRoot:Galaxy.root+"api/jobs",url:function(){return this.urlRoot},intialize:function(a,b){console.debug(a,b)},ids:function(){return this.map(function(a){return a.get("id")})},notReady:function(){return this.filter(function(a){return!a.inReadyState()})},haveDetails:function(){return this.all(function(a){return a.hasDetails()})},queueDetailFetching:function(){var a=this,b=new c.AjaxQueue(this.map(function(a){return function(){return a.fetch({silent:!0})}}));return b.done(function(){a.trigger("details-loaded")}),b},matches:function(a){return this.filter(function(b){return b.matches(a)})},toString:function(){return["JobCollection(",this.length,")"].join("")}},{fromHistory:function(a){console.debug(this);var b=this,c=new b([]);return c.fetch({data:{history_id:a}}).done(function(){window.queue=c.queueDetailFetching()}),c}});return{Job:g,JobCollection:h}});

2 //# sourceMappingURL=../../../maps/mvc/job/job-model.js.map

backbone-tests.ts (https://hg.codeplex.com/mypet) TypeScript · 113 lines

88 function test_collection() {

89 var Book: Backbone.Model;

90 var Library = Backbone.Collection.extend({

91 model: Book

92 });

backbone.html (https://gitlab.com/hecto932/PonyExpress.git) HTML · 175 lines

34 });

35 /* Creo una colecion de mensajes backbone extendida en donde incuimos el mensaje y junto a el el modelo del mensaje */

36 window.MessageCollection = Backbone.Collection.extend({

37 name : "message",

38 model : window.MessageModel

cellCollection.js (https://bitbucket.org/djmdigital/total-auto-care-wordpress.git) JavaScript · 57 lines

8 */

9 define( ['models/cellModel'], function( cellModel ) {

10 var collection = Backbone.Collection.extend( {

11 model: cellModel,

12 comparator: 'order',

library-model.js (https://bitbucket.org/cistrome/cistrome-harvard/) JavaScript · 112 lines

25

26 // LIBRARIES

27 var Libraries = Backbone.Collection.extend({

28 url: '/api/libraries',

29

59

60 // FOLDER AS COLLECTION

61 var Folder = Backbone.Collection.extend({

62 model: Item

63 });

91

92 // HISTORIES

93 var GalaxyHistories = Backbone.Collection.extend({

94 url : '/api/histories',

95 model : GalaxyHistory

test_crap.py (https://bitbucket.org/bee_data_myanmar/odoo_source.git) Python · 75 lines

59 exports.Foo = Backbone.Model.extend({});

60 exports.Bar = Backbone.Model.extend({});

61 var BarCollection = Backbone.Collection.extend({

62 model: exports.Bar,

63 });

user-model.js (https://bitbucket.org/hbc/galaxy-central-hbc/) JavaScript · 1 lines

1 define(["mvc/base-mvc","utils/localization"],function(a,b){var d=Backbone.Model.extend(a.LoggableMixin).extend({urlRoot:galaxy_config.root+"api/users",defaults:{id:null,username:"("+b("anonymous user")+")",email:"",total_disk_usage:0,nice_total_disk_usage:"",quota_percent:null,is_admin:false},initialize:function(e){this.log("User.initialize:",e);this.on("loaded",function(f,g){this.log(this+" has loaded:",f,g)});this.on("change",function(f,g){this.log(this+" has changed:",f,g.changes)})},isAnonymous:function(){return(!this.get("email"))},isAdmin:function(){return(this.get("is_admin"))},loadFromApi:function(h,f){h=h||d.CURRENT_ID_STR;f=f||{};var e=this,g=f.success;f.success=function(j,i){e.trigger("loaded",j,i);if(g){g(j,i)}};if(h===d.CURRENT_ID_STR){f.url=this.urlRoot+"/"+d.CURRENT_ID_STR}return Backbone.Model.prototype.fetch.call(this,f)},clearSessionStorage:function(){for(var e in sessionStorage){if(e.indexOf("history:")===0){sessionStorage.removeItem(e)}else{if(e==="history-panel"){sessionStorage.removeItem(e)}}}},toString:function(){var e=[this.get("username")];if(this.get("id")){e.unshift(this.get("id"));e.push(this.get("email"))}return"User("+e.join(":")+")"}});d.CURRENT_ID_STR="current";d.getCurrentUserFromApi=function(f){var e=new d();e.loadFromApi(d.CURRENT_ID_STR,f);return e};var c=Backbone.Collection.extend(a.LoggableMixin).extend({model:d,urlRoot:galaxy_config.root+"api/users"});return{User:d}});

main.js (https://bitbucket.org/KarlisLukstins/sticky-fork.git) JavaScript · 329 lines

138 });

139

140 var notesCollection = Backbone.Collection.extend({ model: noteModel });

141 var notes = new notesCollection();

142 var notesView = Backbone.View.extend({

153

154 var desktopModel = Backbone.Model.extend({ defaults:{ id: null, name: null, selected: null } });

155 var desktopsCollection = Backbone.Collection.extend({ model: desktopModel });

156 var desktops = new desktopsCollection();

157 var DesktopView = Backbone.View.extend({

library-model.js (https://bitbucket.org/cistrome/cistrome-harvard/) JavaScript · 1 lines

1 define([],function(){var e=Backbone.Model.extend({urlRoot:"/api/libraries/",isVisible:function(k){var j=true;if((!show_delete)&&(this.get("deleted"))){j=false}return j}});var a=Backbone.Model.extend({urlRoot:"/api/folders"});var h=Backbone.Collection.extend({url:"/api/libraries",model:e,sort_key:"name",sort_order:null,initialize:function(j){j=j||{}},getVisible:function(k,l){l=l||[];var j=new h(this.filter(function(m){return m.isVisible(k)}));return j}});var f=Backbone.Model.extend({urlRoot:"/api/libraries/datasets"});var c=Backbone.Collection.extend({model:f});var d=Backbone.Model.extend({defaults:{folder:new c(),full_path:"unknown",urlRoot:"/api/folders/",id:"unknown"},parse:function(j){this.full_path=j[0].full_path;this.get("folder").reset(j[1].folder_contents);return j}});var b=Backbone.Model.extend({urlRoot:"/api/histories/"});var g=Backbone.Model.extend({url:"/api/histories/"});var i=Backbone.Collection.extend({url:"/api/histories",model:g});return{Library:e,FolderAsModel:a,Libraries:h,Item:f,Folder:c,FolderContainer:d,HistoryItem:b,GalaxyHistory:g,GalaxyHistories:i}});

library-model.js (https://bitbucket.org/hbc/galaxy-central-hbc/) JavaScript · 1 lines

1 define([],function(){var f=Backbone.Model.extend({urlRoot:"/api/libraries/",isVisible:function(l){var k=true;if((!l)&&(this.get("deleted"))){k=false}return k}});var i=Backbone.Collection.extend({url:"/api/libraries",model:f,sort_key:"name",sort_order:null,initialize:function(k){k=k||{}},getVisible:function(l,m){m=m||[];var k=new i(this.filter(function(n){return n.isVisible(l)}));return k},sortByNameAsc:function(){this.comparator=function(l,k){if(l.get("name").toLowerCase()>k.get("name").toLowerCase()){return 1}if(k.get("name").toLowerCase()>l.get("name").toLowerCase()){return -1}return 0};this.sort();return this},sortByNameDesc:function(){this.comparator=function(l,k){if(l.get("name").toLowerCase()>k.get("name").toLowerCase()){return -1}if(k.get("name").toLowerCase()>l.get("name").toLowerCase()){return 1}return 0};this.sort();return this}});var g=Backbone.Model.extend({urlRoot:"/api/libraries/datasets/"});var a=Backbone.Model.extend({urlRoot:"/api/folders"});var c=Backbone.Collection.extend({model:g,sortByNameAsc:function(){this.comparator=function(l,k){if(l.get("type")===k.get("type")){if(l.get("name").toLowerCase()>k.get("name").toLowerCase()){return 1}if(k.get("name").toLowerCase()>l.get("name").toLowerCase()){return -1}return 0}else{if(l.get("type")==="folder"){return -1}else{return 1}}};this.sort();return this},sortByNameDesc:function(){this.comparator=function(l,k){if(l.get("type")===k.get("type")){if(l.get("name").toLowerCase()>k.get("name").toLowerCase()){return -1}if(k.get("name").toLowerCase()>l.get("name").toLowerCase()){return 1}return 0}else{if(l.get("type")==="folder"){return -1}else{return 1}}};this.sort();return this}});var e=Backbone.Model.extend({defaults:{folder:new c(),urlRoot:"/api/folders/",id:"unknown"},parse:function(k){this.get("folder").reset(k.folder_contents);return k}});var b=Backbone.Model.extend({urlRoot:"/api/histories/"});var d=Backbone.Collection.extend({urlRoot:"/api/histories/",initialize:function(k){this.id=k.id},url:function(){return this.urlRoot+this.id+"/contents"},model:b});var h=Backbone.Model.extend({urlRoot:"/api/histories/"});var j=Backbone.Collection.extend({url:"/api/histories",model:h});return{Library:f,FolderAsModel:a,Libraries:i,Item:g,Folder:c,FolderContainer:e,HistoryItem:b,HistoryContents:d,GalaxyHistory:h,GalaxyHistories:j}});

backbone-paginated-collection-spec.js (https://github.com/dlikhten/paginated-collection.git) JavaScript · 374 lines

4 });

5

6 var RegularModelCollection = Backbone.Collection.extend({

7 model: TehModel

8 });

chatter.js (https://bitbucket.org/Jeffrey/gevent-socketio/) JavaScript · 88 lines

17 // a collection that will hit a RESTful webservice and pull back all

18 // results serialized as backbone models

19 var ChatCollection = Backbone.Collection.extend({

20 url: "/get_log"

21 });

models.js (https://bitbucket.org/aktivecortex/aktivecortex.git) JavaScript · 196 lines

12 });

13

14 window.CustomerCollection = Backbone.Collection.extend({

15 model: Customer,

16 url: "bank/customers"

88 });

89

90 window.AccountCollection = Backbone.Collection.extend({

91 model: Account

92 });

167 });

168

169 window.MovementCollection = Backbone.Collection.extend({

170 model: Movement

171 });

customize-models.js (https://bitbucket.org/djmdigital/total-auto-care-wordpress.git) JavaScript · 281 lines

140 * @augments Backbone.Collection

141 */

142 api.HeaderTool.ChoiceList = Backbone.Collection.extend({

143 model: api.HeaderTool.ImageModel,

144

productList.js (https://git01.codeplex.com/mobileshop) JavaScript · 173 lines

3 });

4

5 window.ProductList = Backbone.Collection.extend({

6 model: Product,

7 urlRoot: 'api/product/list/',

butterbean.js (https://bitbucket.org/zshi0001/fit5120-kic.git) JavaScript · 875 lines

469 * @var object

470 */

471 var Sections = Backbone.Collection.extend( {

472 model : Section

473 } );

mailCollection.js (https://gitlab.com/zoharyah/mymail.git) JavaScript · 111 lines

8 // ---------------

9

10 var MailList = Backbone.Collection.extend({

11 // Reference to this collection's model.

12 model: app.mailModel,

collection.js (https://bitbucket.org/matthewselby/wpdev.git) JavaScript · 104 lines

7 * For centralized access to breakpoints for updating and watching on changes.

8 */

9 return Backbone.Collection.extend({

10 model: Model,

11 initialize: function() {

searchList.js (https://git01.codeplex.com/mobileshop) JavaScript · 172 lines

2 /// <reference path="../jquery-1.7.js" />

3

4 window.SearchList = Backbone.Collection.extend({

5 model: Product,

6 urlRoot: 'api/product/search/',

payment.js (https://git01.codeplex.com/mobileshop) JavaScript · 63 lines

1 window.PaymentStyle = Backbone.Model.extend({});

2

3 window.PaymentList = Backbone.Collection.extend({

4 model: PaymentStyle,

5 urlRoot: 'api/payment/',

todos.js (git://github.com/pieter-vanderwerff/backbone-require-wire.git) JavaScript · 88 lines

9

10 // Todos Collection

11 return Backbone.Collection.extend( {

12

13 // Will be overwritten with an injected wire function

job_graph.js (https://gitlab.com/jack/chronos.git) JavaScript · 321 lines

89 JobPathModel = CSVModel.extend({});

90

91 JobGraph = Backbone.Collection.extend(_.extend({}, Pollable, {

92 url: '/scheduler/graph/csv',

93 //url: '/stubs/graph.csv',

tags.js (https://bitbucket.org/chapmanb/galaxy-central/) JavaScript · 66 lines

42 /** A collection of Tags

43 */

44 var TagCollection = Backbone.Collection.extend( LoggableMixin ).extend({

45 model : Tag,

46

hda-model.js (https://bitbucket.org/andreyto/mgtaxa-galaxy) JavaScript · 1 lines

1 var HistoryDatasetAssociation=BaseModel.extend(LoggableMixin).extend({defaults:{history_id:null,model_class:"HistoryDatasetAssociation",hid:0,id:null,name:"",state:"",data_type:null,file_size:0,meta_files:[],misc_blurb:"",misc_info:"",deleted:false,purged:false,visible:false,accessible:false},urlRoot:"api/histories/",url:function(){return"api/histories/"+this.get("history_id")+"/contents/"+this.get("id")},initialize:function(){this.log(this+".initialize",this.attributes);this.log("\tparent history_id: "+this.get("history_id"));if(!this.get("accessible")){this.set("state",HistoryDatasetAssociation.STATES.NOT_VIEWABLE)}this.on("change:state",function(b,a){this.log(this+" has changed state:",b,a);if(this.inReadyState()){this.trigger("state:ready",this.get("id"),a,this.previous("state"),b)}})},isDeletedOrPurged:function(){return(this.get("deleted")||this.get("purged"))},isVisible:function(b,c){var a=true;if((!b)&&(this.get("deleted")||this.get("purged"))){a=false}if((!c)&&(!this.get("visible"))){a=false}return a},inReadyState:function(){var a=this.get("state");return((a===HistoryDatasetAssociation.STATES.NEW)||(a===HistoryDatasetAssociation.STATES.OK)||(a===HistoryDatasetAssociation.STATES.EMPTY)||(a===HistoryDatasetAssociation.STATES.FAILED_METADATA)||(a===HistoryDatasetAssociation.STATES.NOT_VIEWABLE)||(a===HistoryDatasetAssociation.STATES.DISCARDED)||(a===HistoryDatasetAssociation.STATES.ERROR))},hasData:function(){return(this.get("file_size")>0)},toString:function(){var a=this.get("id")||"";if(this.get("name")){a+=':"'+this.get("name")+'"'}return"HistoryDatasetAssociation("+a+")"}});HistoryDatasetAssociation.STATES={UPLOAD:"upload",QUEUED:"queued",PAUSED:"paused",RUNNING:"running",SETTING_METADATA:"setting_metadata",NEW:"new",EMPTY:"empty",OK:"ok",FAILED_METADATA:"failed_metadata",NOT_VIEWABLE:"noPermission",DISCARDED:"discarded",ERROR:"error"};var HDACollection=Backbone.Collection.extend(LoggableMixin).extend({model:HistoryDatasetAssociation,initialize:function(){},ids:function(){return this.map(function(a){return a.id})},getVisible:function(a,b){return this.filter(function(c){return c.isVisible(a,b)})},getStateLists:function(){var a={};_.each(_.values(HistoryDatasetAssociation.STATES),function(b){a[b]=[]});this.each(function(b){a[b.get("state")].push(b.get("id"))});return a},running:function(){var a=[];this.each(function(b){if(!b.inReadyState()){a.push(b.get("id"))}});return a},update:function(a){this.log(this+"update:",a);if(!(a&&a.length)){return}var b=this;_.each(a,function(e,c){var d=b.get(e);d.fetch()})},toString:function(){return("HDACollection("+this.ids().join(",")+")")}});

collection.js (https://bitbucket.org/matthewselby/wpdev.git) JavaScript · 65 lines

5 ], function (Model) {

6

7 return Backbone.Collection.extend({

8 model : Model,

9 get_colors : function(){

author.js (https://bitbucket.org/digitalklones/wordpress.git) JavaScript · 175 lines

5 initialize: function() {}

6 });

7 Collections.Projects = Backbone.Collection.extend({

8 model: AE.Models.emproject,

9 action: 'ae-fetch-projects',

myFilter.js (https://git01.codeplex.com/mobileshop) JavaScript · 50 lines

5 window.BrandModel = Backbone.Model.extend({});

6

7 window.BrandList = Backbone.Collection.extend({

8 model: BrandModel,

9 urlRoot: 'api/product/brandlist/',

tours.js (https://bitbucket.org/galaxy/galaxy-central/) JavaScript · 2 lines

1 define(["libs/bootstrap-tour"],function(){var a={storage:window.sessionStorage,onEnd:function(){sessionStorage.removeItem("activeGalaxyTour")},delay:150,orphan:!0},b=function(a){return _.each(a.steps,function(a){a.preclick&&(a.onShow=function(){_.each(a.preclick,function(a){$(a).click()})}),a.postclick&&(a.onHide=function(){_.each(a.postclick,function(a){$(a).click()})}),a.textinsert&&(a.onShown=function(){$(a.element).val(a.textinsert).trigger("change")})}),a};if("undefined"!=typeof Galaxy)var c=Galaxy.root;else var c="/";var d=Backbone.Model.extend({urlRoot:c+"api/tours"}),e=Backbone.Collection.extend({url:c+"api/tours",model:d}),f=function(d){var e=c+"api/tours/"+d;$.getJSON(e,function(c){tourdata=b(c),console.log(tourdata),sessionStorage.setItem("activeGalaxyTour",JSON.stringify(c));var d=new Tour(_.extend({steps:tourdata.steps},a));d.init(),d.goTo(0),d.restart()})},g=Backbone.View.extend({initialize:function(){var a=this;this.setElement("<div/>"),this.model=new e,this.model.fetch({success:function(){a.render()},error:function(){console.error("Failed to fetch tours.")}})},render:function(){var a=_.template(["<h2>Galaxy Tours</h2>","<p>This page presents a list of interactive tours available on this Galaxy server. ","Select any tour to get started (and remember, you can click 'End Tour' at any time).</p>","<ul>","<% _.each(tours, function(tour) { %>","<li>",'<a href="#" class="tourItem" data-tour.id=<%- tour.id %>>',"<%- tour.attributes.name || tour.id %>","</a>",' - <%- tour.attributes.description || "No description given." %>',"</li>","<% }); %>","</ul>"].join(""));this.$el.html(a({tours:this.model.models})).on("click",".tourItem",function(){f($(this).data("tour.id"))})}});return{ToursView:g,hooked_tour_from_data:b,tour_opts:a,giveTour:f}});

2 //# sourceMappingURL=../../maps/mvc/tours.js.map

column.js (https://bitbucket.org/AnuSekar/btree_pos.git) JavaScript · 229 lines

221 @extends Backbone.Collection

222 */

223 var Columns = Backgrid.Columns = Backbone.Collection.extend({

224

225 /**

visualization-model.js (https://bitbucket.org/galaxy/galaxy-central/) JavaScript · 2 lines

1 var Visualization=Backbone.Model.extend({defaults:{config:{}},urlRoot:function(){var a="api/visualizations";return Galaxy.root+a},initialize:function(a){_.isObject(a.config)&&_.isObject(this.defaults.config)&&_.defaults(a.config,this.defaults.config),this._setUpListeners()},_setUpListeners:function(){},set:function(a,b){if("config"===a){var c=this.get("config");_.isObject(c)&&(b=_.extend(_.clone(c),b))}return Backbone.Model.prototype.set.call(this,a,b),this},toString:function(){var a=this.get("id")||"";return this.get("title")&&(a+=":"+this.get("title")),"Visualization("+a+")"}}),VisualizationCollection=Backbone.Collection.extend({model:Visualization,url:function(){return Galaxy.root+"api/visualizations"},initialize:function(a,b){b=b||{}},set:function(a,b){var c=this;a=_.map(a,function(a){var b=c.get(a.id);if(!b)return a;var d=b.toJSON();return _.extend(d,a),d}),Backbone.Collection.prototype.set.call(this,a,b)},toString:function(){return["VisualizationCollection(",[this.historyId,this.length].join(),")"].join("")}});

2 //# sourceMappingURL=../../../maps/mvc/visualization/visualization-model.js.map

widget-timetable.js (https://bitbucket.org/kahara/glissanmedical.git) JavaScript · 190 lines

57

58

59 WidgetTimetable.Items = Backbone.Collection.extend({

60 model: WidgetTimetable.Item,

61 comparator: function(model) {

my-project.js (https://bitbucket.org/digitalklones/wordpress.git) JavaScript · 523 lines

5 var $freelancer_current = $('.freelancer-current-project-tab');

6 Models.FreelancerCurrentProject = Backbone.Model.extend();

7 Collections.FreelancerCurrentProjects = Backbone.Collection.extend({

8 model: Models.FreelancerCurrentProject,

9 action: 'ae-fetch-bid',

95 var $freelancer_previous = $('.freelancer-previous-project-tab');

96 Models.FreelancerPreviousProject = Backbone.Model.extend();

97 Collections.FreelancerPreviousProjects = Backbone.Collection.extend({

98 model: Models.FreelancerPreviousProject,

99 action: 'ae-fetch-bid',

175 var $employer_current = $('.employer-current-project-tab');

176 Models.EmployerCurrentProject = Backbone.Model.extend();

177 Collections.EmployerCurrentProjects = Backbone.Collection.extend({

178 model: Models.EmployerCurrentProject,

179 action: 'ae-fetch-projects',