Removed background color for debugging on navigation layer

This commit is contained in:
squidfunk 2020-02-14 15:11:06 +01:00
parent adc35b1109
commit 6f0efca4a4

View File

@ -32,7 +32,6 @@
export function setOverflowScrolling(
el: HTMLElement
): void {
el.style.backgroundColor = "yellow" // TODO: debugging
el.style.webkitOverflowScrolling = "touch"
}
@ -44,6 +43,5 @@ export function setOverflowScrolling(
export function resetOverflowScrolling(
el: HTMLElement
): void {
el.style.backgroundColor = "" // TODO: debugging
el.style.webkitOverflowScrolling = ""
}