Skip to content

Commit 08e6a53

Browse files
committed
Merge branch 'dev' of https://bitbucket.org/Stigmat/chrome_extension into release
2 parents af301aa + 2cf3261 commit 08e6a53

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"name": "Web Activity Time Tracker",
55
"short_name": "Web Activity",
6-
"version": "0.7.3",
6+
"version": "0.7.4",
77
"minimum_chrome_version": "26",
88

99
"description": "Track your activity in the browser.",

scripts/settings.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ function addNewBlackSiteClickHandler() {
8484
var newBlackSite = document.getElementById('addBlackSiteLbl').value;
8585
if (newBlackSite !== '') {
8686
addDomainToListBox(newBlackSite);
87+
if (blackList === undefined)
88+
blackList = [];
8789
blackList.push(newBlackSite);
8890
document.getElementById('addBlackSiteLbl').value = '';
8991
}

0 commit comments

Comments
 (0)