27 lines
526 B
Text
27 lines
526 B
Text
<%#
|
|
# @file
|
|
# View all synapses.
|
|
# TODO: Is this code used?
|
|
# TODO: What URL is it?
|
|
#%>
|
|
<div class="relatives" id="container">
|
|
<div id="center-container">
|
|
<div id="infovis"></div>
|
|
</div>
|
|
<div id="showcard">
|
|
</div>
|
|
</div>
|
|
<div class="clearfloat"></div>
|
|
|
|
<script>
|
|
json = <%= @synapsejson %>;
|
|
console.log(json);
|
|
$(document).ready(function() {
|
|
initialize("chaotic");
|
|
});
|
|
</script>
|
|
|
|
<% if authenticated? %>
|
|
<%= render :partial => 'topics/new' %>
|
|
<%= render :partial => 'synapses/new' %>
|
|
<% end %>
|