Skip to content

Commit

Permalink
updating comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ibzimh committed Oct 30, 2023
1 parent 2f30d29 commit 2a9326a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions root-cert-stats/background.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
"use strict";

// Note: declared with "var" because popup.js references this global variable.
// If this were to be declared with "const" or "let", then the variable would
// still be available to this file, but not to popup.js.
let rootCertStats = {};

/*
Expand Down
2 changes: 1 addition & 1 deletion root-cert-stats/popup.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use strict";

/*
Get the background page to access the rootCertStats object
Send message to the background page to get the rootCertStats object
*/
browser.runtime.sendMessage({ action: "getRootCertStats" }, response => {
displayTable(response.rootCertStats);
Expand Down

0 comments on commit 2a9326a

Please sign in to comment.