PageRenderTime 40ms CodeModel.GetById 16ms RepoModel.GetById 1ms app.codeStats 0ms

/src/Oro/Bundle/NavigationBundle/Resources/public/js/collection.js

https://github.com/diimpp/platform
JavaScript | 14 lines | 7 code | 1 blank | 6 comment | 0 complexity | f4f14bdc97021f08da462362165c179b MD5 | raw file
  1. /*global define*/
  2. define(['backbone', './model'
  3. ], function (Backbone, NavigationModel) {
  4. 'use strict';
  5. /**
  6. * @export oronavigation/js/collection
  7. * @class oronavigation.Collection
  8. * @extends Backbone.Collection
  9. */
  10. return Backbone.Collection.extend({
  11. model: NavigationModel
  12. });
  13. });