comindware.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.
19 lines (15 loc) • 541 B
JavaScript
/**
* Developer: Stepan Burguchev
* Date: 8/7/2014
* Copyright: 2009-2016 Comindware®
* All Rights Reserved
* Published under the MIT license
*/
;
import { helpers } from 'utils';
import SelectableBehavior from '../../../models/behaviors/SelectableBehavior';
import HighlightableBehavior from '../../../models/behaviors/HighlightableBehavior';
export default function(model) {
_.extend(this, new SelectableBehavior.Selectable(model));
_.extend(this, new HighlightableBehavior(model));
}