metamaps--metamaps/views/topics/show.html.erb

21 lines
680 B
Text
Raw Normal View History

2018-03-03 21:25:42 -05:00
{#
2016-10-02 21:41:05 +08:00
#
2014-07-30 21:10:10 -04:00
# @file
2016-10-02 21:41:05 +08:00
# This shows a topic and its siblings.
2014-07-30 21:10:10 -04:00
# URL: /topics/<topicid>
#
2018-03-03 21:25:42 -05:00
}
2018-03-03 21:25:42 -05:00
{ content_for :title, @topic.name + " | Metamaps" }
{ content_for :mobile_title, @topic.name }
<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>