From d3879c07b1b2140bd19433ae06855894228bd90f Mon Sep 17 00:00:00 2001 From: Claire Date: Tue, 11 Oct 2022 10:41:15 +0200 Subject: Rename flavours/glitch/util into flavours/glitch/utils --- app/javascript/flavours/glitch/util/scrollbar.js | 34 ------------------------ 1 file changed, 34 deletions(-) delete mode 100644 app/javascript/flavours/glitch/util/scrollbar.js (limited to 'app/javascript/flavours/glitch/util/scrollbar.js') diff --git a/app/javascript/flavours/glitch/util/scrollbar.js b/app/javascript/flavours/glitch/util/scrollbar.js deleted file mode 100644 index 929b036d6..000000000 --- a/app/javascript/flavours/glitch/util/scrollbar.js +++ /dev/null @@ -1,34 +0,0 @@ -/** @type {number | null} */ -let cachedScrollbarWidth = null; - -/** - * @return {number} - */ -const getActualScrollbarWidth = () => { - const outer = document.createElement('div'); - outer.style.visibility = 'hidden'; - outer.style.overflow = 'scroll'; - document.body.appendChild(outer); - - const inner = document.createElement('div'); - outer.appendChild(inner); - - const scrollbarWidth = outer.offsetWidth - inner.offsetWidth; - outer.parentNode.removeChild(outer); - - return scrollbarWidth; -}; - -/** - * @return {number} - */ -export const getScrollbarWidth = () => { - if (cachedScrollbarWidth !== null) { - return cachedScrollbarWidth; - } - - const scrollbarWidth = getActualScrollbarWidth(); - cachedScrollbarWidth = scrollbarWidth; - - return scrollbarWidth; -}; -- cgit