15 lines
409 B
Text
15 lines
409 B
Text
<% #
|
|
# @file
|
|
# Shows a list of recently active maps
|
|
# GET /explore/active(.:format)
|
|
# %>
|
|
|
|
<script>
|
|
<% content_for :title, "Explore Active Maps | Metamaps" %>
|
|
<% content_for :mobile_title, "Recently Active" %>
|
|
|
|
Metamaps.currentSection = "explore";
|
|
Metamaps.currentPage = "active";
|
|
Metamaps.ServerData.Active = <%= @maps.to_json.html_safe %>;
|
|
Metamaps.GlobalUI.Search.focus();
|
|
</script>
|