1
0
mirror of https://github.com/SuperBFG7/ympd synced 2025-04-04 17:57:05 +00:00

Fixed issue #11 Pressing "Enter" in search field navigates to Playback tab

Fixed issue #12 Show search results for words with two characters
This commit is contained in:
jcorporation 2018-06-05 22:30:16 +01:00
parent 8bf7729633
commit 5cf9b5fcf2

View File

@ -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