mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
Preparing some code for enter to next, and fixing position bugs with search
This commit is contained in:
@@ -38,7 +38,6 @@ function updateList()
|
|||||||
$.each(list.songs, function(j, listeID){
|
$.each(list.songs, function(j, listeID){
|
||||||
var video_title=listeID.title.replace(/\\\'/g, "'").replace(/"/g,"'").replace(/&/g,"&");
|
var video_title=listeID.title.replace(/\\\'/g, "'").replace(/"/g,"'").replace(/&/g,"&");
|
||||||
var video_id = listeID.id;
|
var video_id = listeID.id;
|
||||||
console.log($.inArray(video_id, bright));
|
|
||||||
if(find && $.inArray(video_id, bright) == -1) brightness = "brightness";
|
if(find && $.inArray(video_id, bright) == -1) brightness = "brightness";
|
||||||
else if(find && $.inArray(video_id, bright) != -1) brightness = "brightness fullbrightness";
|
else if(find && $.inArray(video_id, bright) != -1) brightness = "brightness fullbrightness";
|
||||||
else brightness = "";
|
else brightness = "";
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
$(document).ready(function()
|
$(document).ready(function()
|
||||||
{
|
{
|
||||||
found = null;
|
found = null;
|
||||||
|
znum = 1;
|
||||||
|
elems = [];
|
||||||
bright = [];
|
bright = [];
|
||||||
$.expr[":"].contains = $.expr.createPseudo(function(arg) {
|
$.expr[":"].contains = $.expr.createPseudo(function(arg) {
|
||||||
return function( elem ) {
|
return function( elem ) {
|
||||||
@@ -9,7 +11,7 @@ $(document).ready(function()
|
|||||||
});
|
});
|
||||||
find = false;
|
find = false;
|
||||||
$("html").keydown(function(event) {
|
$("html").keydown(function(event) {
|
||||||
if ((event.keyCode == 13 && find) || (event.keyCode == 27 && find) || (event.ctrlKey && event.keyCode === 70))
|
if ((event.keyCode == 27 && find) || (event.ctrlKey && event.keyCode === 70))
|
||||||
{
|
{
|
||||||
find = !find;
|
find = !find;
|
||||||
if(find)
|
if(find)
|
||||||
@@ -57,7 +59,6 @@ $(document).ready(function()
|
|||||||
myScroll.refresh();
|
myScroll.refresh();
|
||||||
setTimeout(function(){myScroll.refresh();}, 505);
|
setTimeout(function(){myScroll.refresh();}, 505);
|
||||||
}
|
}
|
||||||
|
|
||||||
});
|
});
|
||||||
$("body").keyup(function(event) {
|
$("body").keyup(function(event) {
|
||||||
if(find)
|
if(find)
|
||||||
@@ -74,15 +75,16 @@ $(document).ready(function()
|
|||||||
for(i = 0; i < found.length; i++)
|
for(i = 0; i < found.length; i++)
|
||||||
{
|
{
|
||||||
found[i].className = found[i].className + " fullbrightness";
|
found[i].className = found[i].className + " fullbrightness";
|
||||||
console.log(found[i].className.split(" ")[0]);
|
|
||||||
bright.push(found[i].className.split(" ")[0]);
|
bright.push(found[i].className.split(" ")[0]);
|
||||||
//bright.push(found[i].className.split(" ")[0]);
|
elems.push(found[i]);
|
||||||
}
|
}
|
||||||
myScroll.scrollToElement(found[0], 10, 0, -40);
|
myScroll.scrollToElement(found[0], 10, 0, 0);
|
||||||
}else
|
}else
|
||||||
{
|
{
|
||||||
$(".lresult").removeClass("fullbrightness");
|
$(".lresult").removeClass("fullbrightness");
|
||||||
bright.length = 0;
|
bright.length = 0;
|
||||||
|
elems.length = 0;
|
||||||
|
znum = 1;
|
||||||
}
|
}
|
||||||
//console.log($("#wrapper").find(".result:contains('"+$("#findform-input").val()+"')"));
|
//console.log($("#wrapper").find(".result:contains('"+$("#findform-input").val()+"')"));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user