aboutsummaryrefslogtreecommitdiff
path: root/options.js
blob: 184895403a85be1bd26f8d7c8d7ff589ddb636a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
function saveOptions(e) {
    e.preventDefault();
    browser.storage.sync.set({
        rb: document.querySelector("#rb").value,
        tr: document.querySelector("#tr").value
    });
}
function restoreOptions() {
    function setCurrentChoice(result) {
        document.querySelector("#rb").value = result.rb || "";
        document.querySelector("#tr").value = result.tr || "";
    }
    function onError(error) {
        console.log(`Error: ${error}`);
    }
    let getting = browser.storage.sync.get(["rb", "tr"]);
    getting.then(setCurrentChoice, onError);
}
document.addEventListener("DOMContentLoaded", restoreOptions);
document.querySelector("form").addEventListener("submit", saveOptions);