PageRenderTime 85ms CodeModel.GetById 45ms RepoModel.GetById 11ms app.codeStats 0ms

/models/productList/Collection.js

https://bitbucket.org/borovin/shopcart
JavaScript | 10 lines | 10 code | 0 blank | 0 comment | 0 complexity | 752809974eb9b71600f90d851b3604a6 MD5 | raw file
  1. define(
  2. [
  3. 'models/productList/Model'
  4. ],
  5. function(Model) {
  6. return Backbone.Collection.extend({
  7. model: Model,
  8. url: '/shopCart/productList.json'
  9. });
  10. });