/src/Oro/Bundle/WorkflowBundle/Resources/public/js/workflow-management/attribute/collection.js

https://github.com/diimpp/platform · JavaScript · 14 lines · 7 code · 1 blank · 6 comment · 0 complexity · 426fb40118af5879249b596fe7681eba MD5 · raw file

  1. /* global define */
  2. define(['backbone', 'oroworkflow/js/workflow-management/attribute/model'],
  3. function(Backbone, AttributeModel) {
  4. 'use strict';
  5. /**
  6. * @export oroworkflow/js/workflow-management/attribute/collection
  7. * @class oro.workflowManagement.AttributeCollection
  8. * @extends Backbone.Collection
  9. */
  10. return Backbone.Collection.extend({
  11. model: AttributeModel
  12. });
  13. });