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.
21 lines (17 loc) • 550 B
JavaScript
/**
* Developer: Grigory Kuznetsov
* Date: 22.09.2015
* Copyright: 2009-2016 Comindware®
* All Rights Reserved
* Published under the MIT license
*/
;
import 'lib';
import { helpers } from 'utils';
import VirtualCollection from '../../../../../collections/VirtualCollection';
import HighlightableBehavior from '../../../../../collections/behaviors/HighlightableBehavior';
export default VirtualCollection.extend({
initialize() {
helpers.applyBehavior(this, HighlightableBehavior);
}
});