From ccfaf11218d8ff397a725dce38cd02c7dc82d78d Mon Sep 17 00:00:00 2001 From: MrTimscampi Date: Sat, 1 Feb 2020 18:30:59 +0100 Subject: [PATCH] Remove scroller changes --- src/components/scroller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/scroller.js b/src/components/scroller.js index b4c9b9d9b7..65f33b8e8d 100644 --- a/src/components/scroller.js +++ b/src/components/scroller.js @@ -93,7 +93,7 @@ define(['browser', 'layoutManager', 'dom', 'focusManager', 'ResizeObserver', 'sc // in cases with firefox, if the smooth scroll api is supported then use that because their implementation is very good if (options.allowNativeScroll === false) { options.enableNativeScroll = false; - } else if (isSmoothScrollSupported && (browser.firefox || options.allowNativeSmoothScroll)) { + } else if (isSmoothScrollSupported && ((browser.firefox && !layoutManager.tv) || options.allowNativeSmoothScroll)) { // native smooth scroll options.enableNativeScroll = true; } else if (options.requireAnimation && (browser.animate || browser.supportsCssAnimation())) {