Commit e748a7f55b5a6a78f6e013e75ec7b1ecd450f19c
Exists in
master
and in
111 other branches
Merged master fixed conflict.
Showing
4 changed files
with
25 additions
and
7 deletions
Show diff stats
desktop.php
... | ... | @@ -43,8 +43,8 @@ |
43 | 43 | |
44 | 44 | <!-- <script type="text/javascript" src="js/lib/ext/builds/ext-core.js"></script> --> |
45 | 45 | <!-- <script type="text/javascript" src="js/lib/ext/bootstrap.js"></script> --> |
46 | - <script type="text/javascript" src="js/lib/ext/ext-all-debug-w-comments.js"></script> | |
47 | -<!-- <script type="text/javascript" src="js/lib/ext/ext-all.js"></script> --> | |
46 | +<!-- <script type="text/javascript" src="js/lib/ext/ext-all-debug-w-comments.js"></script>--> | |
47 | + <script type="text/javascript" src="js/lib/ext/ext-all.js"></script> | |
48 | 48 | <!-- <script type="text/javascript" src="js/lib/ext/ext-all-dev.js"> --> |
49 | 49 | <script type="text/javascript" src="js/lib/ext-override.js"></script> |
50 | 50 | |
... | ... | @@ -105,7 +105,7 @@ |
105 | 105 | var isGuest = sessionID.match('guest'); |
106 | 106 | |
107 | 107 | var guestSessionDuration = '<?php echo GuestSessionDuration*60; ?>'; // in secs |
108 | - var maxGuestTimeInterval = '<?php echo MaxGuestTimeInterval; ?>'; // in days | |
108 | + var maxGuestTimeInterval = '<?php echo MaxGuestTimeInterval; ?>'; // in days | |
109 | 109 | |
110 | 110 | //create mask class (LoadMask for elements has been deprecated, use Ext.dom.Element.mask & Ext.dom.Element.unmask) |
111 | 111 | var AMDAMask = new Ext.Class({ |
... | ... |
... | ... | @@ -0,0 +1,19 @@ |
1 | +<h2><img src="js/resources/images/32x32/fav_amda.png"/>Welcome On New AMDA</h2> | |
2 | +<i>release version : alpha 2.0.0<br/>release date : 2016-05-16</i> | |
3 | + | |
4 | +<ul> | |
5 | + <li><img src="js/resources/images/64x64/plot.png" width=24/><i>Plot -a lot of new features, | |
6 | + new interface design. | |
7 | + Use Plot Module help ("?") to learn more | |
8 | + <li><img src="js/resources/images/64x64/catalog.png" width=24/> catalog | |
9 | + <li><img src="js/resources/images/64x64/visu_catalog.png" width=24/> catalog | |
10 | + <li><img src="js/resources/images/64x64/statistics.png" width=24/> Catalogs | |
11 | + <li><img src="js/resources/images/64x64/search.png" width=24/> data Mining | |
12 | + <li><img src="js/resources/images/64x64/edit.png" width=24/> my parameter | |
13 | + <li><img src="js/resources/images/64x64/interop.png" width=24/> inter | |
14 | + <li><img src="js/resources/images/64x64/download_manager.png" width=24/> down | |
15 | + <li><img src="js/resources/images/64x64/mydata.png" width=24/> upload | |
16 | + <li><img src="js/resources/images/64x64/timeTable.png" width=24/> time table | |
17 | + <li><img src="js/resources/images/64x64/operations.png" width=24/> time table oper | |
18 | + <li><img src="js/resources/images/64x64/help.png" width=24/>Help : Obsolete, TBD</i> | |
19 | +</ul> | |
... | ... |
js/app/controllers/InteractiveModule.js
... | ... | @@ -134,7 +134,7 @@ Ext.define('amdaDesktop.InteractiveModule', { |
134 | 134 | show: function() { |
135 | 135 | // configuration of empty catalog |
136 | 136 | if (this.isOperationOnShow) |
137 | - this.operationOnShow(); | |
137 | + Ext.Function.defer(this.operationOnShow, 2000, this); | |
138 | 138 | if (onShowEvent) |
139 | 139 | onShowEvent(); |
140 | 140 | } |
... | ... |