mirror of
https://github.com/xoseperez/espurna.git
synced 2026-03-03 06:54:16 +01:00
17 lines
379 B
JavaScript
17 lines
379 B
JavaScript
import { sendAction } from './connection.mjs';
|
|
|
|
function learn() {
|
|
sendAction("lightfoxLearn");
|
|
}
|
|
|
|
function clear() {
|
|
sendAction("lightfoxClear");
|
|
}
|
|
|
|
export function init() {
|
|
document.querySelector(".button-lightfox-learn")
|
|
?.addEventListener("click", learn);
|
|
document.querySelector(".button-lightfox-clear")
|
|
?.addEventListener("click", clear);
|
|
}
|