Skip to content

Commit

Permalink
Swap .hidden for .ng-hide
Browse files Browse the repository at this point in the history
Fixes #27.
  • Loading branch information
adlawson committed Dec 26, 2016
1 parent 8465a3b commit 77446b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/tracklist.dust
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="mz-tracklist-wrap cloudcast-tracklist hidden" ng-show="!tracklistShown">
<div class="mz-tracklist-wrap cloudcast-tracklist ng-hide" ng-show="!tracklistShown">
<div class="mz-inner-container">
<div class="mz-content">
<h1>Tracklist</h1>
Expand Down
2 changes: 1 addition & 1 deletion tracklist.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,6 @@ function toggleEvents(tracklistContainer, toggleContainer) {
show.classList.toggle('ng-hide');
button.classList.toggle('mz-btn-toggled');
tracklist.classList.toggle('open'); // Legacy support
tracklist.classList.toggle('hidden');
tracklist.classList.toggle('ng-hide');
});
}

0 comments on commit 77446b0

Please sign in to comment.