Fixing display bug
This commit is contained in:
parent
fb683874a7
commit
99f4afdcea
|
@ -519,6 +519,8 @@ var AIRTIME = (function(AIRTIME) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
hisSubmit(); // Fixes display bug
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Icon hover states for search.
|
* Icon hover states for search.
|
||||||
*/
|
*/
|
||||||
|
@ -826,9 +828,8 @@ var AIRTIME = (function(AIRTIME) {
|
||||||
return AIRTIME.utilities.fnGetScheduleRange(dateStartId, timeStartId, dateEndId, timeEndId);
|
return AIRTIME.utilities.fnGetScheduleRange(dateStartId, timeStartId, dateEndId, timeEndId);
|
||||||
}
|
}
|
||||||
|
|
||||||
$historyContentDiv.find("#his_submit").click(function(ev){
|
function hisSubmit(){
|
||||||
var fn,
|
var fn, info;
|
||||||
info;
|
|
||||||
|
|
||||||
info = getStartEnd();
|
info = getStartEnd();
|
||||||
|
|
||||||
|
@ -841,7 +842,11 @@ var AIRTIME = (function(AIRTIME) {
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
redrawTables();
|
redrawTables();
|
||||||
}
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
$historyContentDiv.find("#his_submit").click(function(ev){
|
||||||
|
hisSubmit();
|
||||||
});
|
});
|
||||||
|
|
||||||
$historyContentDiv.on("click", ".his-select-page", selectCurrentPage);
|
$historyContentDiv.on("click", ".his-select-page", selectCurrentPage);
|
||||||
|
|
Loading…
Reference in New Issue