Fixing display bug

This commit is contained in:
Zachary Klosko 2021-01-22 09:20:04 -05:00
parent fb683874a7
commit 99f4afdcea
1 changed files with 22 additions and 17 deletions

View File

@ -519,6 +519,8 @@ var AIRTIME = (function(AIRTIME) {
});
}
hisSubmit(); // Fixes display bug
/*
* Icon hover states for search.
*/
@ -826,9 +828,8 @@ var AIRTIME = (function(AIRTIME) {
return AIRTIME.utilities.fnGetScheduleRange(dateStartId, timeStartId, dateEndId, timeEndId);
}
$historyContentDiv.find("#his_submit").click(function(ev){
var fn,
info;
function hisSubmit(){
var fn, info;
info = getStartEnd();
@ -841,7 +842,11 @@ var AIRTIME = (function(AIRTIME) {
}
else {
redrawTables();
}
};
};
$historyContentDiv.find("#his_submit").click(function(ev){
hisSubmit();
});
$historyContentDiv.on("click", ".his-select-page", selectCurrentPage);