1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| Ext.define('PageAnalyzer.models.LayoutTreeNode', {
| extend: 'Ext.data.Model',
| fields: [
| { name: 'text', type: 'string' },
| { name: 'blocks', type: 'string' },
| { name: 'triggers', type: 'string' },
| { name: 'boxParent', type: 'string' },
| { name: 'isBoxParent', type: 'boolean' },
| { name: 'heightModel', type: 'string' },
| { name: 'widthModel', type: 'string' },
| { name: 'type', type: 'string' },
| { name: 'duration', type: 'float'},
| { name: 'totalTime', type: 'float'},
| { name: 'count', type: 'int'}
| ]
| });
|
|