remove variant graph from front page, fix stemma scaling
[scpubgit/stemmatology.git] / stemmaweb / root / js / componentload.js
index c5e5d3c..87cc0ef 100644 (file)
@@ -1,6 +1,23 @@
-function loadTradition( textid ) {
-       $('#stemma_graph').load( "stemma/" + textid );
-       $('#stemma_graph > svg').width('485px');
-       $('#variant_graph').load( "variantgraph/" + textid );
-       $('#variant_graph > svg').height('300px');
-}
\ No newline at end of file
+function loadTradition( textid, textname ) {
+    // First insert the placeholder image
+    var basepath = window.location.pathname
+    if( basepath.lastIndexOf('/') == basepath.length - 1 ) { 
+       basepath = basepath.slice( 0, basepath.length - 1) 
+    };
+    var imghtml = '<img src="' + basepath + '/images/ajax-loader.gif" alt="Loading SVG..."/>'
+    $('#stemma_graph').empty();
+    $('#stemma_graph').append( imghtml );
+    // 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 );
+       
+       // Then populate the various elements with the right text name/ID.
+       // Stemma and variant graph titles
+       $('.texttitle').empty();
+       $('.texttitle').append( textname );
+       // Stexaminer submit action
+       $('#run_stexaminer').attr( 'action', basepath + "/stexaminer/" + textid );
+       // Relationship mapper submit action
+       $('#run_relater').attr( 'action', basepath + "/relation/" + textid );
+}