Commit 78bffaa72426fab5aa7f1dae7a44beff25ac87c7
1 parent
87e6c7d9
Exists in
master
and in
31 other branches
Add VESPA acknowledgement
Showing
2 changed files
with
25 additions
and
1 deletions
Show diff stats
... | ... | @@ -0,0 +1,7 @@ |
1 | +<h2>VESPA</h2><br/> | |
2 | + | |
3 | +VESPA (Virtual European Solar and Planetary Access, <a href="http://www.europlanet-vespa.eu/">http://www.europlanet-vespa.eu/</a>) aims at building a Virtual Observatory for Planetary Science, connecting all sorts of data in the field, allowing for rapid data search and providing modern tools to retrieve, cross-correlate, and display data and results of scientific analyses. | |
4 | +<br/> | |
5 | +<br/> | |
6 | +VESPA is an activity initially developed by the Europlanet 2020 Research Infrastructure project has received funding from the European Union's Horizon 2020 research and innovation programme under grant agreement No 654208, and extended for the Europlanet 2024 Research Infrastructure project funded by the European Union's Horizon 2020 research and innovation programme under grant agreement No 871149. | |
7 | +<br/> | |
... | ... |
js/app/views/EpnTapUI.js
... | ... | @@ -416,7 +416,24 @@ Ext.define('amdaUI.EpnTapUI', { |
416 | 416 | init: function (config) { |
417 | 417 | const myConf = { |
418 | 418 | id: 'epntapTab', |
419 | - title: 'EPN-TAP', | |
419 | + tabConfig: { | |
420 | + title: 'EPN-TAP <img amda_clicktip="vespaHelp" src="js/resources/images/16x16/info_mini.png"', | |
421 | + listeners: { | |
422 | + click: { | |
423 | + element: 'el', | |
424 | + fn: function (e, t) { | |
425 | + var me = t, | |
426 | + text = me.getAttribute('amda_clicktip'); | |
427 | + if (text) { | |
428 | + e.preventDefault(); | |
429 | + AmdaAction.getInfo({ name: text }, function (res, e) { | |
430 | + if (res.success) myDesktopApp.infoMsg(res.result); | |
431 | + }); | |
432 | + } | |
433 | + } | |
434 | + } | |
435 | + } | |
436 | + }, | |
420 | 437 | items: [{ |
421 | 438 | xtype: 'container', |
422 | 439 | layout: {type: 'vbox', pack: 'start', align: 'stretch'}, |
... | ... |