Files
enlight-lms/lms/www/courses/index.js
2022-11-18 17:05:38 +05:30

10 lines
192 B
JavaScript

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