]> git.openstreetmap.org Git - nominatim-ui.git/blobdiff - src/assets/js/polygons.js
version 2.0 - converted to Svelte framework
[nominatim-ui.git] / src / assets / js / polygons.js
diff --git a/src/assets/js/polygons.js b/src/assets/js/polygons.js
deleted file mode 100644 (file)
index 9470649..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-// *********************************************************
-// BROKEN POLYGON PAGE
-// *********************************************************
-
-function polygons_page_load() {
-  //
-  var api_request_params = {
-    format: 'json'
-  };
-
-  fetch_from_api('polygons', api_request_params, function (aPolygons) {
-    var context = { aPolygons: aPolygons };
-
-    render_template($('main'), 'polygons-template', context);
-    update_html_title('Broken polygons');
-
-    update_data_date();
-  });
-}