2013-01-11 23:49:59 +00:00
|
|
|
<%#
|
|
|
|
# @file
|
|
|
|
# View all synapses.
|
|
|
|
# TODO: Is this code used?
|
|
|
|
# TODO: What URL is it?
|
|
|
|
#%>
|
2012-10-19 21:26:46 +00:00
|
|
|
<div class="relatives" id="container">
|
|
|
|
<div id="center-container">
|
|
|
|
<div id="infovis"></div>
|
|
|
|
</div>
|
|
|
|
<div id="showcard">
|
|
|
|
</div>
|
2012-10-10 00:23:45 +00:00
|
|
|
</div>
|
2012-10-19 21:26:46 +00:00
|
|
|
<div class="clearfloat"></div>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
json = <%= @synapsejson %>;
|
|
|
|
console.log(json);
|
|
|
|
$(document).ready(function() {
|
2012-12-14 18:31:39 +00:00
|
|
|
initialize("chaotic");
|
2012-10-19 21:26:46 +00:00
|
|
|
});
|
2012-10-26 10:04:52 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<% if authenticated? %>
|
2013-01-01 22:45:35 +00:00
|
|
|
<%= render :partial => 'topics/new' %>
|
2012-10-26 10:04:52 +00:00
|
|
|
<%= render :partial => 'synapses/new' %>
|
2013-01-11 23:49:59 +00:00
|
|
|
<% end %>
|