Skip to content

Commit

Permalink
Merge pull request zen-audio-player#257 from avalan4e57/issue/zen-aud…
Browse files Browse the repository at this point in the history
  • Loading branch information
shakeelmohamed authored Jul 31, 2017
2 parents bba3a61 + b1f4f74 commit aba92c0
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 @@ -657,6 +657,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 aba92c0

Please sign in to comment.