X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=stemmaweb%2Froot%2Fjs%2Frelationship.js;h=7921b1dbd08c63ab387f0e6acb9adb07497608b2;hb=63213207534ef21aaa4f98d895f2ab10592466a3;hp=414b78c31ce73f5daa47fef16c58526433332d7c;hpb=139ed2955955e15dffde25369196ae7776e404c8;p=scpubgit%2Fstemmatology.git diff --git a/stemmaweb/root/js/relationship.js b/stemmaweb/root/js/relationship.js index 414b78c..7921b1d 100644 --- a/stemmaweb/root/js/relationship.js +++ b/stemmaweb/root/js/relationship.js @@ -21,6 +21,16 @@ function getRelationshipURL() { } function svgEnlargementLoaded() { + //Give some visual evidence that we are working + $('#loading_overlay').show(); + lo_height = $("#enlargement_container").outerHeight(); + lo_width = $("#enlargement_container").outerWidth(); + $("#loading_overlay").height( lo_height ); + $("#loading_overlay").width( lo_width ); + $("#loading_overlay").offset( $("#enlargement_container").offset() ); + $("#loading_message").offset( + { 'top': lo_height / 2 - $("#loading_message").height() / 2, + 'left': lo_width / 2 - $("#loading_message").width() / 2 }); //Set viewbox widht and height to widht and height of $('#svgenlargement svg'). //This is essential to make sure zooming and panning works properly. $('#svgenlargement ellipse').attr( {stroke:'green', fill:'#b3f36d'} ); @@ -41,10 +51,10 @@ function svgEnlargementLoaded() { svg_g.setAttribute('transform', transform); //used to calculate min and max zoom level: start_element_height = $("#svgenlargement .node title:contains('#START#')").siblings('ellipse')[0].getBBox().height; - add_relations(); + add_relations( function() { $('#loading_overlay').hide(); }); } -function add_relations() { +function add_relations( callback_fn ) { var basepath = getRelativePath(); var textrelpath = getRelationshipURL(); $.getJSON( basepath + '/definitions', function(data) { @@ -65,7 +75,8 @@ function add_relations() { node_obj.set_draggable( false ); node_obj.ellipse.data( 'node_obj', null ); } - }) + }); + callback_fn.call(); }); }); } @@ -490,7 +501,7 @@ $(document).ready(function () { $(".ui-widget-overlay").css("background", "none"); $("#dialog_overlay").show(); $("#dialog_overlay").height( $("#enlargement_container").height() ); - $("#dialog_overlay").width( $("#enlargement_container").width() ); + $("#dialog_overlay").width( $("#enlargement_container").innerWidth() ); $("#dialog_overlay").offset( $("#enlargement_container").offset() ); }, close: function() {