15 lines
373 B
Text
15 lines
373 B
Text
{ #
|
|
# @file
|
|
# Shows a list of current user's maps
|
|
# GET /explore/mine(.:format)
|
|
# }
|
|
|
|
<script>
|
|
{ content_for :title, "My Maps | Metamaps" }
|
|
{ content_for :mobile_title, "My Maps" }
|
|
|
|
Metamaps.currentPage = "mine";
|
|
Metamaps.currentSection = "explore";
|
|
Metamaps.ServerData.Mine = { @maps.to_json.html_safe };
|
|
Metamaps.GlobalUI.Search.focus();
|
|
</script>
|