UNPKG

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.

21 lines (16 loc) 587 B
import template from '../../templates/blinkCheckbox/blinkCheckboxVisibilityDrag.html'; const constants = { iconClassConst: 'filter', colorIconEnabled: 'filter-enabled', colorIconDisabled: 'filter-disabled' }; export default Marionette.View.extend({ template: Handlebars.compile(template), templateContext() { return { iconClass: constants.iconClassConst, iconColor: this.isHidden ? constants.colorIconDisabled : constants.colorIconEnabled }; }, className: 'filter-icon-lists__dragging js-filters-list-dragging' });