From ea78d13b54518a1efc1b332be6de121ceaaa16dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Tue, 24 Oct 2017 10:58:14 +0200 Subject: [PATCH] fix: another fix for playlist view state, #9639 (cherry picked from commit 7861c275573829a37bbc68bc6085ebc11677376b) --- public/app/core/directives/dash_class.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/core/directives/dash_class.js b/public/app/core/directives/dash_class.js index 084c920b765..08f4d3c7326 100644 --- a/public/app/core/directives/dash_class.js +++ b/public/app/core/directives/dash_class.js @@ -32,7 +32,7 @@ function (_, $, coreModule) { }); $scope.$watch('playlistSrv.isPlaying', function(newValue) { - elem.toggleClass('playlist-active', newValue); + elem.toggleClass('playlist-active', newValue === true); }); } };