Removed staggered, and added fading instead

This commit is contained in:
Kasper Rynning-Tønnesen
2015-05-06 16:20:02 +02:00
parent 07eeeb4cc2
commit c83489ed67
4 changed files with 11 additions and 10 deletions

View File

@@ -2924,7 +2924,7 @@ $(document).ready(function(){
easing: 'easeOutSine'
});
$(element).velocity({opacity: 1}, {
duration: 1300,
duration: 650,
queue: false,
easing: 'swing',
step: function(now, fx) {

View File

@@ -50,7 +50,8 @@ function populate_channels(lists)
}
document.getElementById("preloader").style.display = "none";
document.getElementById("searches").innerHTML = output;
Materialize.showStaggeredList('#channels');
//Materialize.fadeInImage('#channels');
$("#channels").fadeIn(800);
$("#search").focus();
}