outlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplace
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
445 B
21 lines
445 B
9 years ago
|
/*!
|
||
|
* 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' },
|
||
|
{ name: 'iconCls' },
|
||
|
{ name: 'module' }
|
||
|
]
|
||
|
});
|