Added CSS only tool tip to key map
[scpubgit/stemmaweb.git] / root / js / relationship-full.js
index 814e58e..e4b1c9c 100644 (file)
@@ -205,7 +205,9 @@ function add_relations( callback_fn ) {
        // TODO Make the descriptions (in typedef.description) available somewhere
        $.each( relationship_types, function(index, typedef) {   
                 var elid = 'list_rel_' + typedef.name;
-                $('#keymaplist').append( $('<li>').attr( 'id', elid ).css( "border-color", relation_manager.relation_colors[index] ).text(typedef.name) ); 
+                li_elm = $('<li class="key">').attr( 'id', elid ).css( "border-color", relation_manager.relation_colors[index] ).text(typedef.name);
+                li_elm.append( $('<div class="key_tip_container"><div class="key_tip">Some obligatory help txt would be going here.</div></div>') );
+                $('#keymaplist').append( li_elm ); 
        });
        // Now fetch the relationships themselves and add them to the graph
        var rel_types = $.map( relationship_types, function(t) { return t.name });