11 lines
165 B
JavaScript
11 lines
165 B
JavaScript
|
import { onReady } from "./utils/helpers";
|
||
|
|
||
|
onReady(() => {
|
||
|
|
||
|
});
|
||
|
|
||
|
function saveOptions() {
|
||
|
|
||
|
}
|
||
|
|
||
|
document.getElementById('save').addEventListener('click', saveOptions)
|