PageRenderTime 46ms CodeModel.GetById 25ms RepoModel.GetById 1ms app.codeStats 0ms

/src/Oro/Bundle/DataGridBundle/Resources/public/js/datagrid/grid-views/collection.js

https://github.com/diimpp/platform
JavaScript | 10 lines | 7 code | 1 blank | 2 comment | 0 complexity | 81d48020e0fa43e6e48ecfea99806326 MD5 | raw file
  1. /*global define*/
  2. define(['backbone', './model'
  3. ], function (Backbone, GridViewsModel) {
  4. 'use strict';
  5. return Backbone.Collection.extend({
  6. /** @property */
  7. model: GridViewsModel
  8. });
  9. });