Browse Source

fix: another fix for playlist view state, #9639

Torkel Ödegaard 8 years ago
parent
commit
7861c27557
1 changed files with 1 additions and 1 deletions
  1. 1 1
      public/app/core/directives/dash_class.js

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