Lower poll interval for checking import status of podcast episodes

This commit is contained in:
Duncan Sommerville 2015-11-11 18:52:12 -05:00
parent c43b45a7ba
commit 8a5c25291e
3 changed files with 15 additions and 3 deletions

View file

@ -1272,10 +1272,10 @@ var AIRTIME = (function(AIRTIME) {
var dt = $datatables[table],
wrapper = $(dt).closest(".dataTables_wrapper");
if (oTable && typeof oTable.fnClearTable === 'function') {
oTable.fnClearTable();
oTable.fnClearTable(false);
}
// Don't redraw if we're switching to another hash for the library table
$.when(redraw && oTable != dt ? dt.fnDraw() : function () {}).done(function () {
$.when(redraw ? dt.fnDraw() : function () {}).done(function () {
$("#library_content").find(".dataTables_wrapper").hide();
wrapper.show();
});