Update docs language for HTML and CSS. (#8934)

This commit is contained in:
alope107
2023-04-28 05:34:59 -07:00
committed by GitHub
parent 058c3de975
commit e8b83eedfc
15 changed files with 20 additions and 20 deletions

View File

@ -28,7 +28,7 @@
const marker = new Marker(new LatLng(50.5, 30.505));
map.addLayer(marker);
marker.bindPopup('Leaflet is designed with simplicity, performance and usability in mind. It works efficiently across all major desktop and mobile platforms out of the box, taking advantage of HTML5 and CSS3 on modern browsers while still being accessible on older ones.').openPopup();
marker.bindPopup('Leaflet is designed with simplicity, performance and usability in mind. It works efficiently across all major desktop and mobile platforms out of the box, taking advantage of modern browser features while still being accessible on older ones.').openPopup();
const marker2 = new Marker(new LatLng(50.502, 30.515));
map.addLayer(marker2);

View File

@ -24,7 +24,7 @@
new Marker(map.getCenter())
.addTo(map)
.bindPopup('A pretty CSS3 popup. <br> Easily customizable.', {
.bindPopup('A pretty CSS popup. <br> Easily customizable.', {
offset: [100, 200],
})
.openPopup();