Commit e63ad8ec055670c1b7e8972790eaee45ae154f39
1 parent
ddfe608e
Exists in
master
and in
111 other branches
Fix the mysterious bug on Firefox
Showing
3 changed files
with
6 additions
and
6 deletions
Show diff stats
js/app/controllers/ExplorerModule.js
@@ -37,7 +37,7 @@ Ext.define('amdaDesktop.ExplorerModule', | @@ -37,7 +37,7 @@ Ext.define('amdaDesktop.ExplorerModule', | ||
37 | 'amdaModel.Download', | 37 | 'amdaModel.Download', |
38 | 'amdaModel.TimeTable', | 38 | 'amdaModel.TimeTable', |
39 | 'amdaModel.Catalog', | 39 | 'amdaModel.Catalog', |
40 | - 'amdaModel.Statistics', | 40 | + 'amdaModel.Stats', |
41 | 'amdaModel.FileObject', | 41 | 'amdaModel.FileObject', |
42 | 'amdaModel.FileParamObject', | 42 | 'amdaModel.FileParamObject', |
43 | 'amdaModel.FilterInfo' | 43 | 'amdaModel.FilterInfo' |
js/app/controllers/StatisticsModule.js
@@ -21,7 +21,7 @@ Ext.define('amdaDesktop.StatisticsModule', { | @@ -21,7 +21,7 @@ Ext.define('amdaDesktop.StatisticsModule', { | ||
21 | * @required | 21 | * @required |
22 | */ | 22 | */ |
23 | nodeDataModel : 'amdaModel.StatisticsNode', | 23 | nodeDataModel : 'amdaModel.StatisticsNode', |
24 | - objectDataModel : 'amdaModel.Statistics', | 24 | + objectDataModel : 'amdaModel.Stats', |
25 | /** | 25 | /** |
26 | * @cfg {String} window definitions | 26 | * @cfg {String} window definitions |
27 | * @required | 27 | * @required |
js/app/models/Statistics.js renamed to js/app/models/Stats.js
1 | /** | 1 | /** |
2 | * Project : AMDA-NG | 2 | * Project : AMDA-NG |
3 | - * Name : Statistics.js | 3 | + * Name : Stats.js |
4 | * Description : Statistics Object Definition | 4 | * Description : Statistics Object Definition |
5 | - * @class amdaModel.Statistics | 5 | + * @class amdaModel.Stats |
6 | * @extends amdaModel.TimeTable | 6 | * @extends amdaModel.TimeTable |
7 | * @author elena | 7 | * @author elena |
8 | */ | 8 | */ |
9 | 9 | ||
10 | -Ext.define('amdaModel.Statistics', { | 10 | +Ext.define('amdaModel.Stats', { |
11 | extend: 'amdaModel.AmdaTimeObject', | 11 | extend: 'amdaModel.AmdaTimeObject', |
12 | 12 | ||
13 | fields : [ | 13 | fields : [ |
@@ -79,4 +79,4 @@ Ext.define('amdaModel.Statistics', { | @@ -79,4 +79,4 @@ Ext.define('amdaModel.Statistics', { | ||
79 | 79 | ||
80 | return values; | 80 | return values; |
81 | } | 81 | } |
82 | -}); | ||
83 | \ No newline at end of file | 82 | \ No newline at end of file |
83 | +}); |