Commit fae756e0b7cc885fbef684d1d6bac7742c0deab5
Exists in
master
and in
111 other branches
Merge branch 'fix-mysterious-firefox-bug' into 'master'
Fix mysterious firefox bug This PR renames the module "Statistics" to "Stats", because add blockers don't like this name. See merge request !3
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 | 37 | 'amdaModel.Download', |
38 | 38 | 'amdaModel.TimeTable', |
39 | 39 | 'amdaModel.Catalog', |
40 | - 'amdaModel.Statistics', | |
40 | + 'amdaModel.Stats', | |
41 | 41 | 'amdaModel.FileObject', |
42 | 42 | 'amdaModel.FileParamObject', |
43 | 43 | 'amdaModel.FilterInfo' | ... | ... |
js/app/controllers/StatisticsModule.js
... | ... | @@ -21,7 +21,7 @@ Ext.define('amdaDesktop.StatisticsModule', { |
21 | 21 | * @required |
22 | 22 | */ |
23 | 23 | nodeDataModel : 'amdaModel.StatisticsNode', |
24 | - objectDataModel : 'amdaModel.Statistics', | |
24 | + objectDataModel : 'amdaModel.Stats', | |
25 | 25 | /** |
26 | 26 | * @cfg {String} window definitions |
27 | 27 | * @required | ... | ... |
js/app/models/Statistics.js renamed to js/app/models/Stats.js
1 | 1 | /** |
2 | 2 | * Project : AMDA-NG |
3 | - * Name : Statistics.js | |
3 | + * Name : Stats.js | |
4 | 4 | * Description : Statistics Object Definition |
5 | - * @class amdaModel.Statistics | |
5 | + * @class amdaModel.Stats | |
6 | 6 | * @extends amdaModel.TimeTable |
7 | 7 | * @author elena |
8 | 8 | */ |
9 | 9 | |
10 | -Ext.define('amdaModel.Statistics', { | |
10 | +Ext.define('amdaModel.Stats', { | |
11 | 11 | extend: 'amdaModel.AmdaTimeObject', |
12 | 12 | |
13 | 13 | fields : [ |
... | ... | @@ -79,4 +79,4 @@ Ext.define('amdaModel.Statistics', { |
79 | 79 | |
80 | 80 | return values; |
81 | 81 | } |
82 | -}); | |
83 | 82 | \ No newline at end of file |
83 | +}); | ... | ... |