Skip to content

Commit

Permalink
Remove unused index for link iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
shgysk8zer0 committed Sep 17, 2017
1 parent b0fdbf6 commit 27cae70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ function init() {
const container = document.body;

try {
links.forEach((link, index) => {
links.forEach(link => {
let feed = document.createElement('a');
feed.href = link.href;
feed.textContent = link.title;
Expand Down

0 comments on commit 27cae70

Please sign in to comment.