metamaps--metamaps/app/views/explore/active.html.erb

16 lines
409 B
Plaintext
Raw Normal View History

2016-02-28 05:13:44 +00:00
<% #
# @file
# Shows a list of recently active maps
# GET /explore/active(.:format)
# %>
<script>
<% content_for :title, "Explore Active Maps | Metamaps" %>
2016-08-12 04:04:18 +00:00
<% content_for :mobile_title, "Recently Active" %>
2016-02-28 05:13:44 +00:00
Metamaps.currentSection = "explore";
Metamaps.currentPage = "active";
2016-10-03 00:32:37 +00:00
Metamaps.ServerData.Active = <%= @maps.to_json.html_safe %>;
Metamaps.GlobalUI.Search.focus();
2016-02-28 05:13:44 +00:00
</script>