From 34c8daadc4d0ad4100716c0320e1566858bc0d67 Mon Sep 17 00:00:00 2001 From: Rainer Simon Date: Sun, 18 Apr 2021 21:11:55 +0200 Subject: [PATCH] Typo --- src/editor/setPosition.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editor/setPosition.js b/src/editor/setPosition.js index 2fb0e67..4a29cf1 100644 --- a/src/editor/setPosition.js +++ b/src/editor/setPosition.js @@ -33,7 +33,7 @@ const setPosition = (wrapperEl, editorEl, selectedEl) => { editorEl.style.bottom = `${containerHeight - annotationTop}px`; } - // Check if vertical flipp helped, push down if not + // Check if vertical flip helped, push down if not const currentOrientation = editorEl.children[1].getBoundingClientRect(); if (currentOrientation.top < 0) { editorEl.style.top = `${-containerBounds.top}px`;