switch from ownCloud to minIO
buttons in table are buttons and do edit and delete properly
This commit is contained in:
+15
-20
@@ -128,27 +128,22 @@ header {
|
||||
© 2025 Kikimor EOOD | K-DepoT - All rights reserved.
|
||||
</footer>
|
||||
|
||||
<script>
|
||||
function initMap() {
|
||||
const map = new google.maps.Map(document.getElementById("map"), {
|
||||
center: { lat: 43.2121, lng: 27.9204 },
|
||||
zoom: 15
|
||||
});
|
||||
|
||||
new google.maps.Marker({
|
||||
position: { lat: 43.2121, lng: 27.9204 },
|
||||
map: map,
|
||||
title: "K-DepoT - Kikimor EOOD"
|
||||
});
|
||||
}
|
||||
</script>
|
||||
|
||||
<script
|
||||
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBboGDgiCrc9yp2uSLmVcfVVIVK-kOQqc4&callback=initMap"
|
||||
async
|
||||
defer>
|
||||
</script>
|
||||
|
||||
<script>
|
||||
function initMap() {
|
||||
const depot = { lat: 43.2121, lng: 27.9204 };
|
||||
const map = new google.maps.Map(document.getElementById('map'), {
|
||||
zoom: 15,
|
||||
center: depot,
|
||||
});
|
||||
const marker = new google.maps.Marker({
|
||||
position: depot,
|
||||
map: map,
|
||||
title: 'K-DepoT'
|
||||
});
|
||||
}
|
||||
</script>
|
||||
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBboGDgiCrc9yp2uSLmVcfVVIVK-kOQqc4&callback=initMap" async defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user