function saveOptions()

in build/UserALEWebExtension/options.js [85:98]


function saveOptions(e) {
  var updatedConfig = {
    userAleHost: document.getElementById("host").value,
    userAleScript: document.getElementById("clientScript").value,
    toolUser: document.getElementById("toolUser").value,
    toolName: document.getElementById("toolName").value,
    toolVersion: document.getElementById("toolVersion").value
  };
  browser.storage.local.set(updatedConfig);
  browser.runtime.sendMessage({
    type: CONFIG_CHANGE,
    payload: updatedConfig
  });
}