Files
enlight-lms/lms/www/courses/index.js
2022-11-11 10:40:29 +05:30

18 lines
294 B
JavaScript

frappe.ready(() => {
$(".nav-link").click((e) => {
change_hash(e);
});
if (window.location.hash) {
open_tab();
}
});
const change_hash = (e) => {
window.location.hash = $(e.currentTarget).attr("href");
};
const open_tab = () => {
$(`a[href="${window.location.hash}"]`).click();
};