mirror of
https://github.com/frappe/lms.git
synced 2026-04-19 22:52:29 +03:00
7 lines
214 B
JavaScript
7 lines
214 B
JavaScript
frappe.ready(function() {
|
|
frappe.web_form.after_save = () => {
|
|
let route = frappe.web_form.doc.name ? `/courses/${frappe.web_form.doc.name}` : `/course`;
|
|
window.location.href = route;
|
|
}
|
|
});
|