diff options
author | gorhill <rhill@raymondhill.net> | 2015-02-07 14:43:17 -0500 |
---|---|---|
committer | gorhill <rhill@raymondhill.net> | 2015-02-07 14:43:17 -0500 |
commit | 88b2cefa95628b198e27d4ad11d785655a2bbf1a (patch) | |
tree | eb3476ab731c6dd1ed9e5f5eb8f93a2be4d54a10 /src/js | |
parent | 38b4dfdfaeb675c93eaeaaa3812d93fd2fe25fe5 (diff) | |
download | uBlock-88b2cefa95628b198e27d4ad11d785655a2bbf1a.zip uBlock-88b2cefa95628b198e27d4ad11d785655a2bbf1a.tar.gz uBlock-88b2cefa95628b198e27d4ad11d785655a2bbf1a.tar.bz2 |
silly typo
Diffstat (limited to 'src/js')
-rw-r--r-- | src/js/popup.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/js/popup.js b/src/js/popup.js index 21cdc6e..ad5e4be 100644 --- a/src/js/popup.js +++ b/src/js/popup.js @@ -302,8 +302,8 @@ var renderPrivacyExposure = function() { // The root page domain must always be counted as connected: that's from // where the root document was fetched. - if ( allDomains[popupData.pdageDomain] !== true ) { - allDomains[popupData.pdageDomain] = true; + if ( allDomains[popupData.pageDomain] !== true ) { + allDomains[popupData.pageDomain] = true; touchedDomainCount += 1; } |