MCPcopy Create free account
hub / github.com/Yorick-Ryu/deep-share / loadSavedSettings

Function loadSavedSettings

onboarding/onboarding.js:135–144  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

133
134// Load saved settings
135function loadSavedSettings() {
136 chrome.storage.sync.get(['formulaFormat'], (data) => {
137 if (data.formulaFormat) {
138 const formatInput = document.querySelector(`input[value="${data.formulaFormat}"]`);
139 if (formatInput) {
140 formatInput.checked = true;
141 }
142 }
143 });
144}
145
146// Handle continue button click
147function handleContinue() {

Callers 1

onboarding.jsFile · 0.85

Calls 1

getMethod · 0.45

Tested by

no test coverage detected