Update on button click
This commit is contained in:
parent
81846f007d
commit
0df9e5cd44
|
@ -64,7 +64,7 @@ Making X11 work
|
|||
X11 at the time wanted `udev`,
|
||||
so I just ran that from init.
|
||||
But, a few months later,
|
||||
X was able to start with `udev`,
|
||||
X was able to start without `udev`,
|
||||
so I took it out and figured out the keyboard and mouse problem.
|
||||
|
||||
It had something to do with `evdev`;
|
||||
|
|
|
@ -8,6 +8,7 @@ function addWords(wl) {
|
|||
re.value = ""
|
||||
re.disabled = false
|
||||
re.focus()
|
||||
re.dispatchEvent(new Event("input"))
|
||||
}
|
||||
|
||||
function regexInput(e) {
|
||||
|
@ -29,7 +30,6 @@ function regexInput(e) {
|
|||
li.textContent = "…"
|
||||
break
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -42,6 +42,7 @@ function anchorToggle(e) {
|
|||
}
|
||||
re.value = val
|
||||
re.focus()
|
||||
re.dispatchEvent(new Event("input"))
|
||||
}
|
||||
|
||||
function init(e) {
|
||||
|
|
Loading…
Reference in New Issue