hangoutsslackgmailskypefacebook-workplaceoutlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegram
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.
14 lines
464 B
14 lines
464 B
6 years ago
|
Ext.define('Hamsket.store.OS', {
|
||
|
extend: 'Ext.data.Store'
|
||
|
,alias: 'store.os'
|
||
|
|
||
|
,fields: ['platform', 'label']
|
||
|
,data: [
|
||
|
{ 'platform': '', 'label': '(none)'}
|
||
|
,{ 'platform': 'win32', 'label': 'Windows'}
|
||
|
,{ 'platform': 'linux', 'label': 'Linux'}
|
||
|
,{ 'platform': 'darwin', 'label': 'MacOS'}
|
||
|
,{ 'platform': 'freebsd', 'label': 'FreeBSD'}
|
||
|
,{ 'platform': 'Solaris', 'label': 'Solaris'}
|
||
|
]
|
||
|
});
|