comment-neaten

This commit is contained in:
John Kerl 2020-01-29 21:24:00 -05:00
parent 7cd723ef8e
commit bf8810d455

View file

@ -9,7 +9,7 @@ class MillerDocToggler {
// ----------------------------------------------------------------
// PUBLIC METHODS
// Array of toggleable div names, without leading '#'
// Prefix for toggleable div names, without leading '#'
constructor(toggleableDivPrefix, buttonSelectFontWeight, buttonDeselectFontWeight) {
this._allDivNames = [];
const divs = document.querySelectorAll('div');
@ -124,16 +124,6 @@ class MillerDocToggler {
//button.style.borderStyle = 'none';
};
// window.onload = function() {
// if ('URLSearchParams' in window) {
// let searchParams = new URLSearchParams(window.location.search);
// let expanded = searchParams.get('expanded');
// if (expanded != null) {
// _expand(expanded)
// }
// }
// };
}
// module.exports = MillerDocToggler;