mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-10 03:06:37 +00:00

- contains ExtJS Library 4.1.1a, together with css and images - is related to the module 93_DbLog.pm, which holds some functions used by the frontend git-svn-id: https://svn.fhem.de/fhem/trunk@2767 2b470e98-0d58-463d-a4d8-8e2adae1ed80
15 lines
267 B
JavaScript
15 lines
267 B
JavaScript
/**
|
|
* Model for saved Charts
|
|
*/
|
|
Ext.define('FHEM.model.SavedChartsModel', {
|
|
extend: 'Ext.data.Model',
|
|
fields: [
|
|
{
|
|
name: 'VALUE',
|
|
type: 'text'
|
|
},{
|
|
name: 'EVENT',
|
|
type: 'text'
|
|
}
|
|
]
|
|
}); |