From: Tara L Andrews <tla@mit.edu>
Date: Mon, 3 Oct 2011 11:48:32 +0000 (+0200)
Subject: new change from Joris
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6b87033c3ed6c5f27e66eec6e7f5f30324fd4909;p=scpubgit%2Fstemmatology.git

new change from Joris
---

diff --git a/TreeOfTexts/root/js/interaction.js b/TreeOfTexts/root/js/interaction.js
index 17a1906..2bda2a7 100644
--- a/TreeOfTexts/root/js/interaction.js
+++ b/TreeOfTexts/root/js/interaction.js
@@ -1,10 +1,10 @@
 $(document).ready(function() {
   $('.rowid').click( function() {
+    $('ellipse').attr( {stroke:'black', fill:'#ccc'} );
     $(this).parent().nextAll('.clickable').children('span').click();
   });
 })
 function color_nodes( arr_node_ids ) {
-  $('ellipse').attr( {stroke:'black', fill:'#999'} );
   jQuery.each( arr_node_ids, function(index,value) {
     $('.node').children('title').filter( function(index) {
       return $(this).text() == value;