Fixed issue with selecting iocns by clicking icon next to saved note title.

This commit is contained in:
kplaczek
2018-04-28 00:03:54 +02:00
parent de000d0403
commit 283c5b905e
2 changed files with 2 additions and 2 deletions

View File

@@ -21,7 +21,7 @@ var Printer = function () {
this.delete.addEventListener('click', this.confirmDelete);
}
document.querySelectorAll('.icon').forEach(function (e) {
document.querySelectorAll('.icons .icon').forEach(function (e) {
e.addEventListener('click', function () {
selfPrinter.selectIcon(this.title);
});