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 +});