Skip to content

Commit

Permalink
fixed icons
Browse files Browse the repository at this point in the history
  • Loading branch information
Georg Hoffmeyer committed Oct 8, 2018
1 parent 4580b78 commit 1f103ce
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Binary file modified img/pause.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/play.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/stop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions js/background.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

const alarmName = "switchSite";
const iconPlay = "../img/play.png";
const iconStop = "../img/stop.png"
const iconPlay = "img/play.png";
const iconStop = "img/stop.png"
var settings;
var currentIndex = 0;
var activeTabId = null;
Expand All @@ -14,12 +14,12 @@ chrome.browserAction.onClicked.addListener(function (tab) {
if (activeTabId == null) {
activeTabId = tab.id;
debug("activated for Tab " + activeTabId);
//setIcon(iconPlay)
setIcon(iconPlay)
init();
} else {
debug("deactivated");
activeTabId = null;
//setIcon(iconStop);
setIcon(iconStop);
}
});

Expand Down

0 comments on commit 1f103ce

Please sign in to comment.