fixed the errors in check

This commit is contained in:
janis
2022-11-29 19:29:38 +01:00
parent a26426b081
commit 548b4c5e9a
2 changed files with 4 additions and 4 deletions

View File

@@ -2565,10 +2565,10 @@
( function( document, window ) { ( function( document, window ) {
'use strict'; 'use strict';
var notes = window.document.getElementsByClassName("notes") var notes = window.document.getElementsByClassName('notes');
for (let items in Object.entries(notes).values) { for (let items in Object.entries(notes).values) {
items.style.display = "none" items.style.display = 'none';
} }
// TODO: Move this to src/lib/util.js // TODO: Move this to src/lib/util.js

View File

@@ -16,10 +16,10 @@
( function( document, window ) { ( function( document, window ) {
'use strict'; 'use strict';
var notes = window.document.getElementsByClassName("notes") var notes = window.document.getElementsByClassName('notes');
for (let items in Object.entries(notes).values) { for (let items in Object.entries(notes).values) {
items.style.display = "none" items.style.display = 'none';
} }
// TODO: Move this to src/lib/util.js // TODO: Move this to src/lib/util.js