A couple of erb files had unnecessary start and end erb tags around every line in a multi-line block of ruby. More readable this way.
10 lines
423 B
Text
10 lines
423 B
Text
<%= javascript_include_tag "edit/id" %>
|
|
|
|
<div id="map">
|
|
<% data = { :key => Settings.id_key }
|
|
data[:lat] = @lat if @lat
|
|
data[:lon] = @lon if @lon
|
|
data[:gpx] = trace_data_url(params[:gpx], :format => :xml) if params[:gpx]
|
|
data[:url] = id_url(:locale => params[:locale]) %>
|
|
<%= tag.iframe "", :frameBorder => 0, :id => "id-embed", :class => "id-embed", :allowfullscreen => "", :data => data %>
|
|
</div>
|