From b2c03280cb28d9fb7b19b4e78bcc889d5c06c416 Mon Sep 17 00:00:00 2001 From: Miroslav Pejic Date: Tue, 2 Nov 2021 19:59:40 +0100 Subject: [PATCH] [mirotalksfu] - fix whiteboard on mousemove hover cursor --- public/js/Room.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/public/js/Room.js b/public/js/Room.js index 294e0cd..0d9ef8c 100644 --- a/public/js/Room.js +++ b/public/js/Room.js @@ -8,7 +8,7 @@ const swalBackground = 'linear-gradient(to left, #1f1e1e, #000000)'; const swalImageUrl = '../images/pricing-illustration.svg'; const url = { - ipLookup: 'https://extreme-ip-lookup.com/json/', + ipLookup: 'https://extreme-ip-lookup.com/json/?key=demo', }; const _PEER = { @@ -1172,6 +1172,8 @@ function mouseMove() { if (wbIsEraser) { wbCanvas.hoverCursor = 'not-allowed'; return; + } else { + wbCanvas.hoverCursor = 'move'; } if (!wbIsDrawing) return; }