Updated client documentation
This commit is contained in:
@ -53,10 +53,4 @@ class Control extends HTMLElement{
|
||||
}
|
||||
}
|
||||
|
||||
customElements.define("sea-control", Control)
|
||||
|
||||
/*
|
||||
connectedCallback : called when first added
|
||||
disconnectedCallback : called when removed
|
||||
attributeChangedCallback : called when attribute changes. attribute to be added in observedAttributes
|
||||
*/
|
||||
customElements.define("sea-control", Control)
|
@ -7,7 +7,7 @@ class CurvesSettingsPopup extends HTMLElement{
|
||||
|
||||
initTable(){
|
||||
|
||||
let userConfiguration = getUserConfiguration();
|
||||
let userConfiguration = getUserConfiguration(); //located in SEAWebClientLocalStorage.js
|
||||
let tbody = this.querySelector("#curves-settings-popup-table tbody");
|
||||
tbody.innerHTML = "";
|
||||
|
||||
@ -25,7 +25,7 @@ class CurvesSettingsPopup extends HTMLElement{
|
||||
let formattedUserConfiguration = this.getFormattedUserConfiguration(localStorageBuffer);
|
||||
|
||||
localStorage.clear();
|
||||
saveUserConfiguration(localStorageBuffer);
|
||||
saveUserConfiguration(localStorageBuffer); //located in SEAWebClientLocalStorage.js
|
||||
|
||||
this.hide();
|
||||
this.applySettingsCallback(formattedUserConfiguration);
|
||||
|
Reference in New Issue
Block a user