fix:change color picker event
This commit is contained in:
+3
-3
@@ -106,8 +106,8 @@ window.onload = function () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const colorControlDom = document.querySelector<HTMLInputElement>('#color')!
|
const colorControlDom = document.querySelector<HTMLInputElement>('#color')!
|
||||||
colorControlDom.onchange = function () {
|
colorControlDom.oninput = function () {
|
||||||
instance.command.executeColor(colorControlDom!.value)
|
instance.command.executeColor(colorControlDom.value)
|
||||||
}
|
}
|
||||||
const colorDom = document.querySelector<HTMLDivElement>('.menu-item__color')!
|
const colorDom = document.querySelector<HTMLDivElement>('.menu-item__color')!
|
||||||
const colorSpanDom = colorDom.querySelector('span')!
|
const colorSpanDom = colorDom.querySelector('span')!
|
||||||
@@ -117,7 +117,7 @@ window.onload = function () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const highlightControlDom = document.querySelector<HTMLInputElement>('#highlight')!
|
const highlightControlDom = document.querySelector<HTMLInputElement>('#highlight')!
|
||||||
highlightControlDom.onchange = function () {
|
highlightControlDom.oninput = function () {
|
||||||
instance.command.executeHighlight(highlightControlDom.value)
|
instance.command.executeHighlight(highlightControlDom.value)
|
||||||
}
|
}
|
||||||
const highlightDom = document.querySelector<HTMLDivElement>('.menu-item__highlight')!
|
const highlightDom = document.querySelector<HTMLDivElement>('.menu-item__highlight')!
|
||||||
|
|||||||
Reference in New Issue
Block a user