fixed the errors in check
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user