diff options
| author | Teddy Wing | 2015-02-15 12:42:29 -0500 |
|---|---|---|
| committer | Teddy Wing | 2015-02-15 12:42:29 -0500 |
| commit | 7ef424c0020f58881123be8ef629da94df3b37e5 (patch) | |
| tree | 2b57d953fc21094b9a5da6dea4446c7b55778739 /background.js | |
| parent | cd218af2c321a69a008382a89afbaee26d729c71 (diff) | |
| download | chrome-copy-urls-from-all-tabs-7ef424c0020f58881123be8ef629da94df3b37e5.tar.bz2 | |
background.js: Remove console.log
Delete an overlooked and unnecessary console.log() call.
Diffstat (limited to 'background.js')
| -rw-r--r-- | background.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/background.js b/background.js index b775258..b87bd04 100644 --- a/background.js +++ b/background.js @@ -8,7 +8,6 @@ function openOrFocusOptionsPage() { for (var i=0; i < extensionTabs.length; i++) { if (optionsUrl == extensionTabs[i].url) { found = true; - console.log("tab id: " + extensionTabs[i].id); chrome.tabs.update(extensionTabs[i].id, {"selected": true}); } } |
