]> git.openstreetmap.org Git - nominatim-ui.git/blob - src/assets/js/deletable.js
upgrade CSS from Bootstrap 3.x => 4.x
[nominatim-ui.git] / src / assets / js / deletable.js
1 // *********************************************************
2 // DELETABLE PAGE
3 // *********************************************************
4
5 jQuery(document).ready(function () {
6   if (!$('#deletable-page').length) { return; }
7
8   var api_request_params = {
9     format: 'json'
10   };
11
12   fetch_from_api('deletable', api_request_params, function (aPolygons) {
13     var context = { aPolygons: aPolygons };
14
15     render_template($('main'), 'deletable-template', context);
16     update_html_title('Deletable objects');
17
18     update_data_date();
19   });
20 });