fixes for stemma retrieval and for relative paths in JS
[scpubgit/stemmatology.git] / stemmaweb / root / js / componentload.js
CommitLineData
cf9626aa 1function loadTradition( textid ) {
56455620 2 // First insert the placeholder image
abc6a992 3 var basepath = window.location.pathname
3e420a82 4 if( basepath.lastIndexOf('/') == basepath.length - 1 ) {
5 basepath = basepath.slice( 0, basepath.length - 1)
6 };
abc6a992 7 var imghtml = '<img src="' + basepath + '/images/ajax-loader.gif" alt="Loading SVG..."/>'
56455620 8 $('#stemma_graph').empty();
9 $('#variant_graph').empty();
10 $('#stemma_graph').append( imghtml );
11 $('#variant_graph').append( imghtml );
12 // Then get and load the actual content.
e2f647b9 13 // TODO: scale #stemma_grpah both horizontally and vertically
14 // TODO: load svgs from SVG.Jquery (to make scaling react in Safari)
abc6a992 15 $('#stemma_graph').load( basepath + "/stemma/" + textid , function() {
a88e75b1 16 var stemma_svg_element = $('#stemma_graph svg').svg().svg('get').root();
e2f647b9 17 console.log( stemma_svg_element );
a88e75b1 18 stemma_svg_element.height.baseVal.value = $('#stemma_graph').height();
19 });
abc6a992 20 $('#variant_graph').load( basepath + "/variantgraph/" + textid , function() {
a88e75b1 21 var variant_svg_element = $('#variant_graph svg').svg().svg('get').root();
22 var svg_height = variant_svg_element.height.baseVal.value;
23 var svg_width = variant_svg_element.width.baseVal.value;
24 var container_height = $('#variant_graph').height();
25 variant_svg_element.height.baseVal.value = container_height;
26 variant_svg_element.width.baseVal.value = (svg_width/svg_height * container_height);
27 });
28}