Started #57, currently there is a bug where the TV list won't filter

This commit is contained in:
tidusjar 2016-03-21 17:18:57 +00:00
parent 895a0c50eb
commit bbe2bcbfed
8 changed files with 2164 additions and 11 deletions

View file

@ -13,6 +13,7 @@ var tvimer = 0;
movieLoad();
tvLoad();
// Approve all
$('#approveAll').click(function () {
$.ajax({
@ -274,6 +275,15 @@ function movieLoad() {
var html = searchTemplate(context);
$("#movieList").append(html);
});
$('#movieList').mixItUp({
layout: {
display: 'block'
},
load: {
filter: 'all'
}
});
});
};
@ -286,6 +296,14 @@ function tvLoad() {
var html = searchTemplate(context);
$("#tvList").append(html);
});
$('#tvList').mixItUp({
layout: {
display: 'block'
},
load: {
filter: 'all'
}
});
});
};