comindware.core.ui
Version:
Comindware Core UI provides the basic components like editors, lists, dropdowns, popups that we so desperately need while creating Marionette-based single-page applications.
14 lines (11 loc) • 354 B
JavaScript
import SelectableBehavior from '../../../models/behaviors/SelectableBehavior';
// import { toolbarItemType } from '../meta';
export default Backbone.Model.extend({
initialize() {
_.extend(this, new SelectableBehavior.Selectable(this));
},
defaults: {
// type: toolbarItemType.SELECTITEM
type: 'SelectItem'
}
});