UNPKG

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) 476 B
/** * Developer: Grigory Kuznetsov * Date: 18.08.2015 * Copyright: 2009-2016 Comindware® * All Rights Reserved * Published under the MIT license */ 'use strict'; import { Handlebars } from 'lib'; export default { getFilterViewByType(type) { return Marionette.ItemView.extend({ template: Handlebars.compile('<div class="innerDiv">PopoutView</div>'), className: 'native-filter-popout' }); } };