Skip to content

Commit

Permalink
Forget All Students button now reloads page when used.
Browse files Browse the repository at this point in the history
  • Loading branch information
HunterAhlquist committed Dec 2, 2021
1 parent 559eb76 commit 0623afd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion js/AliasCore.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@ let curClass;
function DEBUG_WipeChromeData() {
if (confirm("Wipe extension data? This will forget all students saved.")) {
chrome.storage.local.clear(function () {
console.log("deleted all")
console.log("deleted all");
window.location.reload();
});
}

}

function SaveDataLocal() {
Expand Down

0 comments on commit 0623afd

Please sign in to comment.