From: tla Date: Wed, 11 Jun 2014 13:48:26 +0000 (+0200) Subject: Display description/help text received from Stemweb X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=scpubgit%2Fstemmaweb.git;a=commitdiff_plain;h=d9d6b62b9d18cb04a220749f547ffb3bb155c21e Display description/help text received from Stemweb --- diff --git a/root/css/dashboard.css b/root/css/dashboard.css index 1386ee0..fcfa7c3 100644 --- a/root/css/dashboard.css +++ b/root/css/dashboard.css @@ -137,3 +137,10 @@ #root_tree_dialog img { vertical-align: middle; } +#stemweb_algorithm_desc_text { + overflow: auto; + height: 150px; + margin-top: 5px; + padding: 10px; + border: 1px solid #ddd; +} \ No newline at end of file diff --git a/root/js/componentload.js b/root/js/componentload.js index 3abf1a2..37b4f12 100644 --- a/root/js/componentload.js +++ b/root/js/componentload.js @@ -548,8 +548,8 @@ $(document).ready( function() { $('#stemweb-ui-dialog').dialog({ autoOpen: false, - height: 160, - width: 240, + height: 425, + width: 400, modal: true, buttons: { Run: function (evt) { @@ -607,6 +607,14 @@ $(document).ready( function() { // "name" -> form label $('#stemweb_algorithm').change( function() { var pk = $(this).val(); + // Display a link to the popup description, and fill in + // the description itself, if we have one. + if( 'desc' in algorithmTypes[pk] ) { + $('#stemweb_algorithm_desc_text').empty().append( algorithmTypes[pk].desc ); + $('#stemweb_algorithm_desc').show(); + } else { + $('#stemweb_algorithm_desc').hide(); + } $('#stemweb_runtime_options').empty(); $.each( algorithmTypes[pk].args, function( i, apk ) { var argInfo = algorithmArgs[apk]; diff --git a/root/src/index.tt b/root/src/index.tt index 0a5437e..6901bb2 100644 --- a/root/src/index.tt +++ b/root/src/index.tt @@ -168,8 +168,13 @@ var textOnLoad = "[% withtradition %]";
+
Choose an algorithm
-
+ + +
+
+
Select the options