Commit f1b763a02a3bf5efbb0123b5f5184d5edbbae3ee

  • avatar
  • arvind
  • Thu Mar 14 14:14:58 IST 2013
Fixing minor bug
			 - Editor button on the index page misbehaved because of having hardcoded url to it.  Fix is to use url_for to generate the url.
  
185185 }
186186 function editTreeJSON() {
187187 var json = $('#tree-json-loaded').val();
188 window.open('/editor?json='+json);
188 window.open("{{ url_for('editor') }}?json="+json);
189189 }
190190 </script>
191191 <script type="text/javascript" src="static/jit.js"></script>