Skip to content

Commit 00ba74c

Browse files
committed
Remove debug
1 parent 8226d0f commit 00ba74c

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

common/webapp/src/js/PopupMarker.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ export class PopupMarker extends Marker {
7474
if (navigator?.clipboard?.writeText) {
7575
navigator.clipboard.writeText(text)
7676
.catch(e => console.error(e));
77-
console.log("Copied new!");
7877
} else {
7978
function listener(e) {
8079
e.clipboardData.setData("text/plain", text);
@@ -83,7 +82,6 @@ export class PopupMarker extends Marker {
8382
document.addEventListener("copy", listener);
8483
document.execCommand("copy");
8584
document.removeEventListener("copy", listener);
86-
console.log("Copied old!");
8785
}
8886
}
8987
static blockClipboardFormat = (pos, isHires) => isHires ? `${pos.x} ${pos.y} ${pos.z}` : `${pos.x} ${pos.z}`;

0 commit comments

Comments
 (0)