IE was getting confused by having a div with an id of "map" and a

link anchor with a name of "map". Closes #865.
This commit is contained in:
Tom Hughes 2008-04-28 09:49:27 +00:00
parent a2caee2a35
commit 42da12e81c

View file

@ -11,10 +11,13 @@
<td><%= f.text_area :body, :cols => 80 %></td>
</tr>
<tr valign="top">
<th>Location</th>
<td><a name="map"></a><div id="map" style="border: 1px solid black; position: relative; width : 90%; height : 400px; display: none;"></div>
<span class="location">Latitude: <%= f.text_field :latitude, :size => 20, :id => "latitude" %> Longitude: <%= f.text_field :longitude, :size => 20, :id => "longitude" %></span> <a href="#map" id="usemap" onclick="document.getElementById('map').style.display = 'block'; document.getElementById('usemap').style.display = 'none';">use map</a> </td>
</tr>
<th>Location</th>
<td>
<div id="map" style="border: 1px solid black; position: relative; width : 90%; height : 400px; display: none;"></div>
<span class="location">Latitude: <%= f.text_field :latitude, :size => 20, :id => "latitude" %> Longitude: <%= f.text_field :longitude, :size => 20, :id => "longitude" %></span>
<a href="javascript:openMap()" id="usemap">use map</a>
</td>
</tr>
<tr>
<th></th>
<td><%= submit_tag 'Save' %></td>
@ -40,7 +43,7 @@
<!--
var marker;
function init(){
function init() {
var centre = new OpenLayers.LonLat(<%= lon %>, <%= lat %>);
var zoom = <%= zoom %>;
@ -66,6 +69,11 @@
marker = addMarkerToMap(merc, null, "Diary entry location");
}
function openMap() {
$("map").style.display = "block";
$("usemap").style.display = "none";
}
window.onload = init;
// -->
</script>