Move diary entry JS to page-specific script file

This commit is contained in:
John Firebaugh 2012-10-05 11:58:45 -07:00 committed by Tom Hughes
parent 04887011d4
commit 7f6320ed10
3 changed files with 38 additions and 39 deletions

View file

@ -1,3 +1,7 @@
<% content_for :head do %>
<%= javascript_include_tag "diary_entry" %>
<% end %>
<h1><%= @title %></h1>
<%= error_messages_for 'diary_entry' %>
@ -34,41 +38,3 @@
</tr>
</table>
<% end %>
<script type="text/javascript">
<!--
var marker;
function setLocation( e ) {
closeMapPopup();
var lonlat = getEventPosition(e);
$("#latitude").val(lonlat.lat);
$("#longitude").val(lonlat.lon);
if (marker) {
removeMarkerFromMap(marker);
}
marker = addMarkerToMap(lonlat, null, I18n.t('diary_entry.edit.marker_text'));
}
function openMap() {
$("#map").show();
$("#usemap").hide();
var params = $("#map").data();
var centre = new OpenLayers.LonLat(params.lon, params.lat);
var map = createMap("map");
setMapCenter(centre, params.zoom);
if ($("#latitude").val() && $("#longitude").val()) {
marker = addMarkerToMap(centre, null, I18n.t('diary_entry.edit.marker_text'));
}
map.events.register("click", map, setLocation);
}
// -->
</script>