mirror of
https://github.com/php/web-doc-editor.git
synced 2026-03-26 02:02:10 +01:00
22 lines
422 B
JavaScript
22 lines
422 B
JavaScript
Ext.define('phpdoe.store.Themes', {
|
|
extend : 'Ext.data.Store',
|
|
model : 'phpdoe.model.Theme',
|
|
data: [
|
|
{
|
|
id: 'default',
|
|
name: 'Default'
|
|
},
|
|
{
|
|
id: 'access',
|
|
name: 'Access'
|
|
},
|
|
{
|
|
id: 'gray',
|
|
name: 'Gray'
|
|
},
|
|
{
|
|
id: 'scoped',
|
|
name: 'Scoped'
|
|
}
|
|
]
|
|
}); |