From: tla Date: Wed, 14 Mar 2012 15:20:41 +0000 (+0100) Subject: properly display & scale stemma graphs X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1e6291199a176e8c64e2233fb624a6f5d1ac0b74;p=scpubgit%2Fstemmaweb.git properly display & scale stemma graphs --- diff --git a/root/js/componentload.js b/root/js/componentload.js index 01663da..e881f84 100644 --- a/root/js/componentload.js +++ b/root/js/componentload.js @@ -12,12 +12,7 @@ function loadTradition( textid, textname ) { // Then get and load the actual content. // TODO: scale #stemma_grpah both horizontally and vertically // TODO: load svgs from SVG.Jquery (to make scaling react in Safari) - $('#stemma_graph').load( basepath + "/stemma/" + textid , function() { - if( $('#stemma_graph svg').size() != 0 ) { - var stemma_svg_element = $('#stemma_graph svg').svg().svg('get').root(); - stemma_svg_element.height.baseVal.value = $('#stemma_graph').height(); - } - }); + $('#stemma_graph').load( basepath + "/stemma/" + textid ); $('#variant_graph').load( basepath + "/variantgraph/" + textid , function() { var variant_svg_element = $('#variant_graph svg').svg().svg('get').root(); var svg_height = variant_svg_element.height.baseVal.value;