metamaps--metamaps/views/topics/show.js

11 lines
501 B
JavaScript
Raw Normal View History

<script>
2016-10-02 21:41:05 +08:00
Metamaps.currentSection = "topic"
2018-03-03 21:25:42 -05:00
Metamaps.currentPage = { @topic.id.to_s }
2016-10-02 21:41:05 +08:00
Metamaps.ServerData = Metamaps.ServerData || {}
2018-03-03 21:25:42 -05:00
Metamaps.ServerData.ActiveTopic = { @topic.to_json(user: current_user).html_safe }
Metamaps.ServerData.Creators = { @allcreators.to_json.html_safe }
Metamaps.ServerData.Topics = { @alltopics.to_json(user: current_user).html_safe }
Metamaps.ServerData.Synapses = { @allsynapses.to_json.html_safe }
2016-10-02 21:41:05 +08:00
Metamaps.ServerData.VisualizeType = "RGraph"
2016-08-01 13:38:57 -04:00
</script>