Fix colour preview not loading on page load

The event was changed from `change` to `input`. The trigger was not updated accordingly.
This commit is contained in:
Chris Hill-Scott
2018-08-22 16:51:16 +01:00
committed by GitHub
parent 6193f049f5
commit 3483490f03

View File

@@ -16,7 +16,7 @@
this.$input
.on('input', this.update)
.trigger('change');
.trigger('input');
};