UNPKG

extjs-gpl

Version:

GPL licensed version of Sencha Ext JS

24 lines (22 loc) 497 B
/*! * Ext JS Library * Copyright(c) 2006-2014 Sencha Inc. * licensing@sencha.com * http://www.sencha.com/license */ /** * @class Ext.ux.desktop.ShortcutModel * @extends Ext.data.Model * This model defines the minimal set of fields for desktop shortcuts. */ Ext.define('Ext.ux.desktop.ShortcutModel', { extend: 'Ext.data.Model', fields: [{ name: 'name', convert: Ext.String.createVarName }, { name: 'iconCls' }, { name: 'module' }] });