Skip to content
Snippets Groups Projects
Commit a3d36d07 authored by root@ist-geodyn's avatar root@ist-geodyn Committed by root@ist-geodyn
Browse files

old js_modifications

parent 646fcb34
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,18 @@ class HomePageController{
}
documentReady(){
//Add banner
let banner = new Banner(
'#maincontentdiv',
'<h3 class="ui" style="text-align: center"><a href="https://gricad-gitlab.univ-grenoble-alpes.fr/Geodynamo/pygeodyn">pygeodyn</a> (Python geomagnetic data assimilation package) and <a href="https://gricad-gitlab.univ-grenoble-alpes.fr/Geodynamo/webgeodyn">webgeodyn</a> (visualisation tool deployed on this website) are now available for download !</h3>',
'info');
//Add long description
$('#longDesc').load("view/longDesc.html");
//Add core flow descriptions
$.get("view/coreflowDesc.html", function(data){
$('#maincontentdiv .segment').append(data);
});
}
}
\ No newline at end of file
......@@ -28,5 +28,10 @@ $(document).ready(function() {
}
};
//Add downloadTab
$.get("view/downloadTab.html", function(data){
$('#tabMenu').append(data);
});
window.mc = new MainController();
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment