From 5cf9b5fcf292d21740d8cb5c7ef84286e548e00d Mon Sep 17 00:00:00 2001 From: jcorporation Date: Tue, 5 Jun 2018 22:30:16 +0100 Subject: [PATCH] Fixed issue #11 Pressing "Enter" in search field navigates to Playback tab Fixed issue #12 Show search results for words with two characters --- htdocs/js/mpd.js | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/htdocs/js/mpd.js b/htdocs/js/mpd.js index a9f2354..001913a 100644 --- a/htdocs/js/mpd.js +++ b/htdocs/js/mpd.js @@ -85,7 +85,7 @@ var app = $.sammy(function() { $('#cardQueue').removeClass('hide'); $('#navQueue').addClass('active'); } - if (searchstr.length >= 3) { + if (searchstr.length >= 2) { socket.send('MPD_API_SEARCH_QUEUE,' + mpdtag + ','+pagination+',' + searchstr); } else { @@ -191,7 +191,7 @@ var app = $.sammy(function() { $('#cardSearch').removeClass('hide'); $('#navSearch').addClass('active'); } - if (searchstr.length >= 3) { + if (searchstr.length >= 2) { socket.send('MPD_API_SEARCH,' + mpdtag + ','+pagination+',' + searchstr); } else { $('#searchList > tbody').empty(); @@ -1069,13 +1069,17 @@ function doSearch(searchstr) { app.setLocation('#/search/' + pagination + '/' + mpdtag + '/' + searchstr); } +$('#search2').submit(function () { + return false; +}); + function addAllFromSearch() { var mpdtag='Any Tag'; $('#searchtags2 > button').each(function() { if ($(this).hasClass('btn-success')) { mpdtag=$(this).text(); } }); var searchstr=$('#searchstr2').val(); - if (searchstr.length >= 3) { + if (searchstr.length >= 2) { socket.send('MPD_API_SEARCH_ADD,' + mpdtag + ',' + searchstr); var rowCount = $('#searchList >tbody >tr').length; showNotification('Added '+rowCount+' songs from search','','','success'); @@ -1119,6 +1123,10 @@ $('#searchqueue').submit(function () { return false; }); +$('#searchqueue').submit(function () { + return false; +}); + function scrollToTop() { document.body.scrollTop = 0; // For Safari document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE and Opera