12 lines
279 B
JavaScript
12 lines
279 B
JavaScript
frappe.ready(() => {
|
|
if (!$(".title").hasClass("is_mentor")) {
|
|
frappe.call({
|
|
method: "community.lms.doctype.lesson.lesson.save_progress",
|
|
args: {
|
|
lesson: $(".title").attr("data-name"),
|
|
batch: $(".title").attr("data-batch")
|
|
}
|
|
})
|
|
}
|
|
})
|