]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/site/edit.rhtml
Resize the map div when the page load is complete (via onload) in case the
[rails.git] / app / views / site / edit.rhtml
index 4cd01dcc946cfd8b3a96a040ee36f51ba138cb35..d2657d26f141627c1f4b9274f9869fd86820d993 100644 (file)
     <a href="http://wiki.openstreetmap.org/index.php/Editing">Several other options</a> are also available
     for editing OpenStreetMap.
 </div>
-<script type="text/javascript" src="/javascripts/swfobject.js"></script>
-<script type="text/javascript">
+<%= javascript_include_tag 'swfobject.js' %>
+<script type="text/javascript" defer="defer">
   var brokenContentSize = $("content").offsetWidth == 0;
-  var fo = new SWFObject("/potlatch/potlatch.swf?d="+Math.round(Math.random()*1000), "potlatch", "700", "600", "6", "#FFFFFF");
+  var fo = new SWFObject("/potlatch/potlatch.swf?d="+Math.round(Math.random()*1000), "potlatch", "100%", "100%", "6", "#FFFFFF");
+  // 700,600 for fixed size, 100%,100% for resizable
+  var changesaved=true;
+  var winie=false; if (document.all && window.print) { winie=true; }
+  
+  window.onbeforeunload=function() {
+       if (!changesaved && !winie) {
+           return "You have unsaved changes. (To save in Potlatch, you should deselect the current way or point.)";
+       }
+  }
 
   function doSWF(lat,lon,sc) {
     if (sc < 11) sc = 11;
@@ -55,7 +64,7 @@
     fo.addVariable('scale',sc);
     fo.addVariable('token','<%= session[:token] %>');
     <% if params['gpx'] %>
-    fo.addVariable('gpx','<%= h(params['gpx']) + "/data" %>');
+    fo.addVariable('gpx','<%= h(params['gpx']) + "/data.xml" %>');
     <% end %>
     fo.write("map");
   }
 
     resizeMap();
   }
+  
+  handleResize();
 
-  window.onresize = handleResize;
   window.onload = handleResize;
-
+  window.onresize = handleResize;
 </script>
 <% end %>