mirror of
https://github.com/moparisthebest/SickRage
synced 2024-10-31 15:35:01 -04:00
72 lines
2.5 KiB
JavaScript
72 lines
2.5 KiB
JavaScript
$(document).ready(function() {
|
|
|
|
function make_row(indexer_id, season, episode, name, subtitles, checked) {
|
|
if (checked)
|
|
var checked = ' checked';
|
|
else
|
|
var checked = '';
|
|
|
|
var row = '';
|
|
row += ' <tr class="good">';
|
|
row += ' <td><input type="checkbox" class="'+indexer_id+'-epcheck" name="'+indexer_id+'-'+season+'x'+episode+'"'+checked+'></td>';
|
|
row += ' <td style="width: 1%;">'+season+'x'+episode+'</td>';
|
|
row += ' <td>'+name+'</td>';
|
|
row += ' <td style="float: right;">';
|
|
subtitles = subtitles.split(',')
|
|
for (i in subtitles)
|
|
{
|
|
row += ' <img src="/images/flags/'+subtitles[i]+'.png" width="16" height="11" alt="'+subtitles[i]+'" /> ';
|
|
}
|
|
row += ' </td>';
|
|
row += ' </tr>'
|
|
|
|
return row;
|
|
}
|
|
|
|
$('.allCheck').click(function(){
|
|
var indexer_id = $(this).attr('id').split('-')[1];
|
|
$('.'+indexer_id+'-epcheck').prop('checked', $(this).prop('checked'));
|
|
});
|
|
|
|
$('.get_more_eps').click(function(){
|
|
var cur_indexer_id = $(this).attr('id');
|
|
var checked = $('#allCheck-'+cur_indexer_id).prop('checked');
|
|
var last_row = $('tr#'+cur_indexer_id);
|
|
|
|
$.getJSON(sbRoot+'/manage/showSubtitleMissed',
|
|
{
|
|
indexer_id: cur_indexer_id,
|
|
whichSubs: $('#selectSubLang').val()
|
|
},
|
|
function (data) {
|
|
$.each(data, function(season,eps){
|
|
$.each(eps, function(episode, data) {
|
|
//alert(season+'x'+episode+': '+name);
|
|
last_row.after(make_row(cur_indexer_id, season, episode, data.name, data.subtitles, checked));
|
|
});
|
|
});
|
|
});
|
|
$(this).hide();
|
|
});
|
|
|
|
// selects all visible episode checkboxes.
|
|
$('.selectAllShows').click(function(){
|
|
$('.allCheck').each(function(){
|
|
this.checked = true;
|
|
});
|
|
$('input[class*="-epcheck"]').each(function(){
|
|
this.checked = true;
|
|
});
|
|
});
|
|
|
|
// clears all visible episode checkboxes and the season selectors
|
|
$('.unselectAllShows').click(function(){
|
|
$('.allCheck').each(function(){
|
|
this.checked = false;
|
|
});
|
|
$('input[class*="-epcheck"]').each(function(){
|
|
this.checked = false;
|
|
});
|
|
});
|
|
|
|
}); |