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.

22 lines (16 loc) 427 B
/** * Developer: Stepan Burguchev * Date: 11/18/2014 * Copyright: 2009-2016 Comindware® * All Rights Reserved * Published under the MIT license */ 'use strict'; import { Handlebars } from 'lib'; import template from '../templates/loading.hbs'; export default Marionette.ItemView.extend({ initialize() { }, className: 'l-loader', template: Handlebars.compile(template) });