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