PageRenderTime 31ms CodeModel.GetById 9ms RepoModel.GetById 0ms app.codeStats 0ms

/app/scripts/comments-collection.js

https://github.com/TheWebShop/gallery-walking
JavaScript | 15 lines | 11 code | 3 blank | 1 comment | 0 complexity | 01d3bf9d3cb711335040abbfaf891df0 MD5 | raw file
  1. /*global define*/
  2. define([
  3. 'underscore',
  4. 'backbone',
  5. 'models/comments-model'
  6. ], function (_, Backbone, CommentsModel) {
  7. 'use strict';
  8. var CommentsCollection = Backbone.Collection.extend({
  9. model: CommentsModel
  10. });
  11. return CommentsCollection;
  12. });