X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fcensus-tools.git;a=blobdiff_plain;f=www%2Fmaps%2Fmaps%2Fpublic%2Fjavascripts%2Fmaputils.js;h=3d1f2e5cecba3cd9d067f71f1a78aefbaae5a038;hp=45f976d30e3332b87fcf6549f1eb0d8539009da0;hb=01fd7fbb997f6e7017c92005702f4b80c9dbafb1;hpb=d797c850a8493c0027b1e8b8dbc4d3e78840d4d9 diff --git a/www/maps/maps/public/javascripts/maputils.js b/www/maps/maps/public/javascripts/maputils.js index 45f976d..3d1f2e5 100644 --- a/www/maps/maps/public/javascripts/maputils.js +++ b/www/maps/maps/public/javascripts/maputils.js @@ -1,17 +1,21 @@ -function post_data(url, data) { - /* Create a new form, and add it to the DOM. Then, create a hidden - input control as a child of the form which contains the data that - we'd like to post. Finally, add the form to the document's body, - and submit it. */ - var new_form = document.createElement("form"); - new_form.method = "post"; - new_form.action = url; - var new_input = document.createElement("input"); - new_input.setAttribute("id", "data"); - new_input.setAttribute("name", "data"); - new_input.setAttribute("type", "hidden"); - new_input.setAttribute("value", data); - new_form.appendChild(new_input); - document.body.appendChild(new_form); - new_form.submit(); +function MapUtils() { + + this.post_data = function(url, data) { + /* Create a new form, and add it to the DOM. Then, create a hidden + input control as a child of the form which contains the data that + we'd like to post. Finally, add the form to the document's body, + and submit it. */ + var new_form = document.createElement("form"); + new_form.method = "post"; + new_form.action = url; + var new_input = document.createElement("input"); + new_input.setAttribute("id", "data"); + new_input.setAttribute("name", "data"); + new_input.setAttribute("type", "hidden"); + new_input.setAttribute("value", data); + new_form.appendChild(new_input); + document.body.appendChild(new_form); + new_form.submit(); + } + }