X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/examples/desktop/js/ShortcutModel.js diff --git a/examples/desktop/js/ShortcutModel.js b/examples/desktop/js/ShortcutModel.js new file mode 100644 index 00000000..b5fcc3db --- /dev/null +++ b/examples/desktop/js/ShortcutModel.js @@ -0,0 +1,20 @@ +/*! + * Ext JS Library 4.0 + * Copyright(c) 2006-2011 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' } + ] +});