Skip to content

Commit a3fda26

Browse files
committed
bugfix: uncomment commented localstorage usage
1 parent 9e5bd38 commit a3fda26

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,4 @@ node_modules
2828
.lock-wscript
2929
private.js
3030
users.json
31+
*.sublime*

js/script.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ ad.getUsersForGroup(groupName, function(err, users) {
2727
}
2828
});
2929

30-
// if (localStorage.users) users2table(JSON.parse(localStorage.users));
30+
if (localStorage.users) users2table(JSON.parse(localStorage.users));
3131
function users2table (users) {
3232
tablehtml = '';
3333
for (i=0; i<users.length;i++) {

0 commit comments

Comments
 (0)