Nabin Hait | 10c6137 | 2021-04-13 15:46:01 +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', { | ||||
5 | validate(frm) { | ||||
6 | let theme_scss = frm.doc.theme_scss; | ||||
7 | if (theme_scss && theme_scss.includes('frappe/public/scss/website') | ||||
8 | && !theme_scss.includes('erpnext/public/scss/website') | ||||
9 | ) { | ||||
10 | frm.set_value('theme_scss', | ||||
11 | `${frm.doc.theme_scss}\n@import "erpnext/public/scss/website";`); | ||||
12 | } | ||||
13 | } | ||||
14 | }); |