restore all eslint rules

This commit is contained in:
JFH
2020-08-01 01:23:28 +02:00
parent 137516caba
commit 92635ba721
13 changed files with 224 additions and 15 deletions

View File

@@ -49,7 +49,7 @@ This will return the icon (as jQuery object) with a given ID.
// events for each icon
$.each(icons, function (id, icon) {
icon.click(function () {
alert('You clicked on the icon with id ' + id); // eslint-disable-line no-alert
alert('You clicked on the icon with id ' + id);
});
});
}