2018-03-04 02:25:42 +00:00
|
|
|
{ #
|
2016-08-31 20:58:49 +00:00
|
|
|
# @file
|
|
|
|
# Shows a list of current user's starred maps
|
|
|
|
# GET /explore/starred(.:format)
|
2018-03-04 02:25:42 +00:00
|
|
|
# }
|
2016-08-31 20:58:49 +00:00
|
|
|
|
|
|
|
<script>
|
2018-03-04 02:25:42 +00:00
|
|
|
{ content_for :title, "Starred Maps | Metamaps" }
|
|
|
|
{ content_for :mobile_title, "Starred Maps" }
|
2016-08-31 20:58:49 +00:00
|
|
|
|
2016-10-02 14:28:00 +00:00
|
|
|
Metamaps.currentPage = "starred";
|
2016-08-31 20:58:49 +00:00
|
|
|
Metamaps.currentSection = "explore";
|
2018-03-04 02:25:42 +00:00
|
|
|
Metamaps.ServerData.Starred = { @maps.to_json.html_safe };
|
2016-10-02 02:09:13 +00:00
|
|
|
Metamaps.GlobalUI.Search.focus();
|
2016-08-31 20:58:49 +00:00
|
|
|
</script>
|