Files
enlight-lms/school/lms/web_form/chapter/chapter.js
2022-03-19 09:31:39 +05:30

9 lines
333 B
JavaScript

frappe.ready(function() {
frappe.web_form.after_save = () => {
frappe.msgprint(__("Chapter has been saved successfully. Go back to the course and add this chapter to the chapters table."))
setTimeout(() => {
window.location.href = `/courses/${frappe.web_form.doc.course}`;
}, 3000);
}
});