From 5ceab15faa0f2ff21425b0538250169db9beb05b Mon Sep 17 00:00:00 2001 From: Raphael Date: Tue, 25 Jan 2022 14:27:30 +0100 Subject: [PATCH] fix typo for function --- src/js/whiteboard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/whiteboard.js b/src/js/whiteboard.js index fe187f9..2abf643 100644 --- a/src/js/whiteboard.js +++ b/src/js/whiteboard.js @@ -894,7 +894,7 @@ const whiteboard = { drawImgToBackground(url, width, height, left, top, rotationAngle) { const px = (v) => Number(v).toString() + "px"; this.imgContainer.append( - this.imageWithSrc(url).css({ + this.imgWithSrc(url).css({ width: px(width), height: px(height), top: px(top),