Skip to content

Commit

Permalink
Merge branch 'master' into issue/zen-audio-player#222
Browse files Browse the repository at this point in the history
  • Loading branch information
avalan4e57 authored Aug 1, 2017
2 parents cc3e89e + aba92c0 commit e97802e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions js/everything.js
Original file line number Diff line number Diff line change
Expand Up @@ -786,6 +786,13 @@ $(function() {
$("#demo").hide();
}

// Reverts to Home when there is no text in input
$("#v").on("input", function() {
if ($("#v").val() === "") {
$("#search-results").hide();
}
});

$("input[name='toggleRepeat']").change(function() {
ZenPlayer.isRepeat = $(this).is(":checked");
});
Expand Down

0 comments on commit e97802e

Please sign in to comment.