16 lines
380 B
Text
16 lines
380 B
Text
|
<% #
|
||
|
# @file
|
||
|
# Shows a list of current user's maps
|
||
|
# GET /explore/mine(.:format)
|
||
|
# %>
|
||
|
|
||
|
<script>
|
||
|
Metamaps.Maps.Mine = <%= @maps.to_json.html_safe %>;
|
||
|
Metamaps.currentPage = "mine";
|
||
|
<% content_for :title, "Explore My Maps | Metamaps" %>
|
||
|
|
||
|
Metamaps.currentSection = "explore";
|
||
|
Metamaps.GlobalUI.Search.isOpen = true;
|
||
|
Metamaps.GlobalUI.Search.lock();
|
||
|
</script>
|