05.12.2016, 14:34
There's a home button which is hidden if Schedulers are shown in a frame.
To make home button act as a "Back" button, you have to add this to Custom JavaScript:
To make home button act as a "Back" button, you have to add this to Custom JavaScript:
Code:
$(function() {
if (window.history.length > 1) {
$('.btn-home').click(function(e) {
e.preventDefault();
window.history.back();
});
}
});