9 lines
333 B
JavaScript
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);
|
|
}
|
|
});
|