Added searchbar quality modal with ctrl+enter
This commit is contained in:
parent
379fde07b3
commit
aa4cc2a207
@ -149,13 +149,16 @@ var playlistSearch = new Vue({
|
||||
})
|
||||
|
||||
// Search section
|
||||
$("#searchbar").keyup(function(e){
|
||||
$("#searchbar").keydown(function(e){
|
||||
if(e.keyCode == 13){
|
||||
term = this.value
|
||||
console.log(term)
|
||||
if (isValidURL(term))
|
||||
if (isValidURL(term)){
|
||||
if (e.ctrlKey){
|
||||
openQualityModal(term);
|
||||
}else{
|
||||
sendAddToQueue(term);
|
||||
else{
|
||||
}
|
||||
}else{
|
||||
document.getElementById("search_tab_content").style.display = "none";
|
||||
socket.emit("mainSearch", {term: term});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user