Skip to content

Commit

Permalink
Merge 0c7014d into 1a4646d
Browse files Browse the repository at this point in the history
  • Loading branch information
boneskull committed May 15, 2020
2 parents 1a4646d + 0c7014d commit 16b1aef
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .eslintignore
@@ -1,8 +1,11 @@
coverage/
mocha.js
*.fixture.js
docs/
docs/_site
docs/_dist
docs/example
out/
!lib/mocha.js
test/integration/fixtures
!.*.js
*.min.js
4 changes: 4 additions & 0 deletions .eslintrc.yml
Expand Up @@ -20,6 +20,10 @@ rules:
- object: 'Object'
property: 'assign'
overrides:
- files:
- docs/js/**/*.js
env:
node: false
- files:
- scripts/**/*.js
- package-scripts.js
Expand Down
7 changes: 3 additions & 4 deletions docs/js/avatars.js
@@ -1,9 +1,9 @@
(function () {
(function() {
'use strict';

var imageLists = document.querySelectorAll('.image-list');

Array.prototype.forEach.call(imageLists, function (imageList) {
Array.prototype.forEach.call(imageLists, function(imageList) {
var images = imageList.querySelectorAll('img');
var counter = images.length;

Expand All @@ -28,5 +28,4 @@
}
}
});

}());
})();

0 comments on commit 16b1aef

Please sign in to comment.