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