18 lines
433 B
Text
18 lines
433 B
Text
{ #
|
|
# @file
|
|
# Shows a list of a user's maps
|
|
# GET /explore/mapper/:id(.:format)
|
|
# }
|
|
|
|
<script>
|
|
{ content_for :title, @user.name + " | Metamaps" }
|
|
{ content_for :mobile_title, @user.name }
|
|
|
|
Metamaps.currentSection = "explore";
|
|
Metamaps.currentPage = "mapper";
|
|
Metamaps.ServerData.Mapper = {
|
|
models: { @maps.to_json.html_safe },
|
|
mapperId: { params[:id] }
|
|
};
|
|
Metamaps.GlobalUI.Search.focus();
|
|
</script>
|