Fixing display bug
This commit is contained in:
parent
fb683874a7
commit
99f4afdcea
|
@ -517,7 +517,9 @@ var AIRTIME = (function(AIRTIME) {
|
||||||
removeHistoryDialog();
|
removeHistoryDialog();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
hisSubmit(); // Fixes display bug
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Icon hover states for search.
|
* Icon hover states for search.
|
||||||
|
@ -825,23 +827,26 @@ var AIRTIME = (function(AIRTIME) {
|
||||||
|
|
||||||
return AIRTIME.utilities.fnGetScheduleRange(dateStartId, timeStartId, dateEndId, timeEndId);
|
return AIRTIME.utilities.fnGetScheduleRange(dateStartId, timeStartId, dateEndId, timeEndId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function hisSubmit(){
|
||||||
|
var fn, info;
|
||||||
|
|
||||||
|
info = getStartEnd();
|
||||||
|
|
||||||
|
fn = fnServerData;
|
||||||
|
fn.start = info.start;
|
||||||
|
fn.end = info.end;
|
||||||
|
|
||||||
|
if (inShowsTab) {
|
||||||
|
showSummaryList(info.start, info.end);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
redrawTables();
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
$historyContentDiv.find("#his_submit").click(function(ev){
|
$historyContentDiv.find("#his_submit").click(function(ev){
|
||||||
var fn,
|
hisSubmit();
|
||||||
info;
|
|
||||||
|
|
||||||
info = getStartEnd();
|
|
||||||
|
|
||||||
fn = fnServerData;
|
|
||||||
fn.start = info.start;
|
|
||||||
fn.end = info.end;
|
|
||||||
|
|
||||||
if (inShowsTab) {
|
|
||||||
showSummaryList(info.start, info.end);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
redrawTables();
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
$historyContentDiv.on("click", ".his-select-page", selectCurrentPage);
|
$historyContentDiv.on("click", ".his-select-page", selectCurrentPage);
|
||||||
|
|
Loading…
Reference in New Issue