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', { |
| 5 | apply_custom_theme(frm) { |
| 6 | let custom_theme = frm.doc.custom_theme; |
| 7 | custom_theme = custom_theme.split('\n'); |
| 8 | if ( |
| 9 | frm.doc.apply_custom_theme |
| 10 | && custom_theme.length === 2 |
| 11 | && custom_theme[1].includes('frappe/public/scss/website') |
| 12 | ) { |
| 13 | frm.set_value('custom_theme', |
| 14 | `$primary: #7575ff;\n@import "frappe/public/scss/website";\n@import "erpnext/public/scss/website";`); |
| 15 | } |
| 16 | } |
| 17 | }); |