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

16 lines
405 B
Plaintext
Raw Normal View History

<% #
# @file
# Shows a list of current user's maps
# GET /explore/mine(.:format)
# %>
<script>
<% content_for :title, "Explore Shared Maps | Metamaps" %>
2016-08-12 04:04:18 +00:00
<% content_for :mobile_title, "Shared With Me" %>
Metamaps.currentPage = "shared";
Metamaps.currentSection = "explore";
2016-10-03 00:32:37 +00:00
Metamaps.ServerData.Shared = <%= @maps.to_json.html_safe %>;
Metamaps.GlobalUI.Search.focus();
</script>