From 42af630e7b12c5a206b273d4421470ab2bbdf009 Mon Sep 17 00:00:00 2001 From: grafixeyehero Date: Thu, 30 May 2019 02:28:57 +0300 Subject: [PATCH] Fix fierfox dropdown --- src/components/emby-select/emby-select.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/emby-select/emby-select.js b/src/components/emby-select/emby-select.js index 80e34677f7..f46ce4fa59 100644 --- a/src/components/emby-select/emby-select.js +++ b/src/components/emby-select/emby-select.js @@ -116,7 +116,7 @@ define(['layoutManager', 'browser', 'actionsheet', 'css!./emby-select', 'registe inputId++; } - if (!browser.firefox) { + if (browser) { this.classList.add('emby-select-withcolor'); if (layoutManager.tv) { @@ -165,4 +165,4 @@ define(['layoutManager', 'browser', 'actionsheet', 'css!./emby-select', 'registe prototype: EmbySelectPrototype, extends: 'select' }); -}); \ No newline at end of file +});