013e3c7f21
* follows for maps in the ui for testers * require user for these actions * match how map follow works
15 lines
535 B
Text
15 lines
535 B
Text
<%= render :partial => 'layouts/lightboxes' %>
|
|
<%= render :partial => 'layouts/templates' %>
|
|
<%= render :partial => 'shared/metacodeBgColors' %>
|
|
<script type="text/javascript" charset="utf-8">
|
|
<% if current_user %>
|
|
Metamaps.ServerData.ActiveMapper = <%= current_user.to_json({follows: true, email: true}).html_safe %>
|
|
<% else %>
|
|
Metamaps.ServerData.ActiveMapper = null
|
|
<% end %>
|
|
|
|
Metamaps.Loading.setup()
|
|
</script>
|
|
<%= render :partial => 'layouts/googleanalytics' if ENV["GA_TRACKING_CODE"].present? %>
|
|
</body>
|
|
</html>
|