blob: 84de2f5b51520cf443ef7b8c0c13709195a96920 [file] [log] [blame]
Faris Ansari5f8b3582019-03-19 11:48:32 +05301// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors
2// MIT License. See license.txt
3
4frappe.ui.form.on('Website Theme', {
Faris Ansari8e99aaf2019-06-14 20:06:54 +05305 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 Ansari5f8b3582019-03-19 11:48:32 +05309 ) {
Faris Ansari8e99aaf2019-06-14 20:06:54 +053010 frm.set_value('theme_scss',
11 `${frm.doc.theme_scss}\n@import "erpnext/public/scss/website";`);
Faris Ansari5f8b3582019-03-19 11:48:32 +053012 }
13 }
14});