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.
24 lines (20 loc) • 681 B
JavaScript
/**
* Developer: Grigory Kuznetsov
* Date: 12.11.2015
* Copyright: 2009-2015 Comindware®
* All Rights Reserved
*
* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF Comindware
* The copyright notice above does not evidence any
* actual or intended publication of such source code.
*/
/* global define, require, Backbone, Marionette, $, _, Localizer */
define(['comindware/core'],
function (core) {
'use strict';
return Backbone.Model.extend({
initialize: function () {
_.extend(this, new core.models.behaviors.SelectableBehavior.Selectable(this));
}
});
});