diff --git a/examples/drag-and-drop-custom-kmz.js b/examples/drag-and-drop-custom-kmz.js index 41b7b3e8c5..24e8103f60 100644 --- a/examples/drag-and-drop-custom-kmz.js +++ b/examples/drag-and-drop-custom-kmz.js @@ -140,7 +140,7 @@ function download(fullpath, filename) { }) .then(function (blob) { if (navigator.msSaveBlob) { - // link download attribuute does not work on MS browsers + // link download attribute does not work on MS browsers navigator.msSaveBlob(blob, filename); } else { link.href = URL.createObjectURL(blob); diff --git a/examples/drag-and-drop-custom-mvt.js b/examples/drag-and-drop-custom-mvt.js index 5ac2740ad6..16e098afe3 100644 --- a/examples/drag-and-drop-custom-mvt.js +++ b/examples/drag-and-drop-custom-mvt.js @@ -108,7 +108,7 @@ function download(fullpath, filename) { }) .then(function (blob) { if (navigator.msSaveBlob) { - // link download attribuute does not work on MS browsers + // link download attribute does not work on MS browsers navigator.msSaveBlob(blob, filename); } else { link.href = URL.createObjectURL(blob); diff --git a/examples/drag-and-drop.js b/examples/drag-and-drop.js index b37ee3cf26..88c8efa389 100644 --- a/examples/drag-and-drop.js +++ b/examples/drag-and-drop.js @@ -102,7 +102,7 @@ function download(fullpath, filename) { }) .then(function (blob) { if (navigator.msSaveBlob) { - // link download attribuute does not work on MS browsers + // link download attribute does not work on MS browsers navigator.msSaveBlob(blob, filename); } else { link.href = URL.createObjectURL(blob); diff --git a/examples/export-map.js b/examples/export-map.js index ca3836b8ef..087f64d139 100644 --- a/examples/export-map.js +++ b/examples/export-map.js @@ -53,7 +53,7 @@ document.getElementById('export-png').addEventListener('click', function () { } ); if (navigator.msSaveBlob) { - // link download attribuute does not work on MS browsers + // link download attribute does not work on MS browsers navigator.msSaveBlob(mapCanvas.msToBlob(), 'map.png'); } else { const link = document.getElementById('image-download');