dneustadt /
DnViewSnapshots
| 1 | Ext.define('Shopware.apps.ViewSnapshots.model.Snapshot', { |
||
|
0 ignored issues
–
show
|
|||
| 2 | extend : 'Ext.data.Model', |
||
| 3 | fields : [ 'sessionID', 'template', 'step', 'url' ], |
||
| 4 | proxy: { |
||
| 5 | type : 'ajax', |
||
| 6 | reader : { |
||
| 7 | type : 'json', |
||
| 8 | root : 'data', |
||
| 9 | totalProperty: 'totalCount' |
||
| 10 | } |
||
| 11 | } |
||
| 12 | }); |
||
| 13 |
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.