Files
lms/community/www/batch/learn.js
2021-06-02 13:52:50 +05:30

12 lines
281 B
JavaScript

frappe.ready(() => {
console.log($(".title").hasClass("is_mentor"))
if (!$(".title").hasClass("is_mentor")) {
frappe.call({
method: "community.lms.doctype.lesson.lesson.save_progress",
args: {
lesson: $(".title").attr("data-name")
}
})
}
})