Skip to content

Commit

Permalink
Commit changed files and submodule updates
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-n-cooper-bot authored and github-actions[bot] committed Mar 8, 2023
1 parent 999b9e7 commit 7f7accd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
window.addEventListener('load', function () {
const button = document.getElementById('exp_button');
const exListbox = new Listbox(document.getElementById('exp_elem_list'));
new ListboxButton(button, exListbox);
new ListboxButton(button, exListbox); /* eslint no-undef: off */
});

class ListboxButton {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint no-use-before-define: 0 */ // --> OFF
/*
* This content is licensed according to the W3C Software License at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
Expand All @@ -17,7 +18,7 @@ window.addEventListener('load', function () {
// can be found in the dom.
if (document.getElementById('ss_imp_list')) {
var ex1ImportantListbox = new Listbox(
document.getElementById('ss_imp_list')
/* eslint no-undef: off */ document.getElementById('ss_imp_list')
);
var ex1UnimportantListbox = new Listbox(
document.getElementById('ss_unimp_list')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,7 @@
*/

window.addEventListener('load', function () {
new Listbox(document.getElementById('ss_elem_list'));
new Listbox(
document.getElementById('ss_elem_list')
); /* eslint no-undef: off */
});

0 comments on commit 7f7accd

Please sign in to comment.