Faris Ansari | 5f8b358 | 2019-03-19 11:48:32 +0530 | [diff] [blame] | 1 | // Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors |
| 2 | // MIT License. See license.txt |
| 3 | |
| 4 | frappe.ui.form.on('Website Theme', { |
Faris Ansari | 8e99aaf | 2019-06-14 20:06:54 +0530 | [diff] [blame] | 5 | validate(frm) { |
| 6 | let theme_scss = frm.doc.theme_scss; |
| 7 | if (theme_scss.includes('frappe/public/scss/website') |
| 8 | && !theme_scss.includes('erpnext/public/scss/website') |
Faris Ansari | 5f8b358 | 2019-03-19 11:48:32 +0530 | [diff] [blame] | 9 | ) { |
Faris Ansari | 8e99aaf | 2019-06-14 20:06:54 +0530 | [diff] [blame] | 10 | frm.set_value('theme_scss', |
| 11 | `${frm.doc.theme_scss}\n@import "erpnext/public/scss/website";`); |
Faris Ansari | 5f8b358 | 2019-03-19 11:48:32 +0530 | [diff] [blame] | 12 | } |
| 13 | } |
| 14 | }); |