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.
16 lines (12 loc) • 390 B
text/typescript
import BranchView from './BranchView';
import template from '../templates/unNamedBranch.hbs';
import NodeBehavior from '../behaviors/NodeBehavior';
export default BranchView.extend({
template: Handlebars.compile(template),
className: 'unnamed-branch-item js-unnamed-tree-item',
behaviors: {
NodeBehavior: {
behaviorClass: NodeBehavior
}
}
});