Files
enlight-lms/lms/www/courses/index.js
2022-11-14 16:20:13 +05:30

12 lines
194 B
JavaScript

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