1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-27 06:01:54 +03:00

Update JS to show live changes and set light color values

This commit is contained in:
Dan Brown
2023-01-28 17:11:15 +00:00
parent c337439370
commit 104621841b
10 changed files with 104 additions and 70 deletions

View File

@ -15,6 +15,6 @@ export class SettingColorPicker extends Component {
setValue(value) {
this.colorInput.value = value;
this.colorInput.dispatchEvent(new Event('change'));
this.colorInput.dispatchEvent(new Event('change', {bubbles: true}));
}
}