* Removed a file that is not used. * Fixed some lint issues * Fixed some more lint issues
11 lines
302 B
JavaScript
11 lines
302 B
JavaScript
'use strict';
|
|
|
|
function initializeUserProfilePage() {
|
|
if (document.getElementById('user-profile-dropdown')) {
|
|
document.getElementById('user-profile-dropdown').onclick = () => {
|
|
document
|
|
.getElementById('user-profile-dropdownmenu')
|
|
.classList.toggle('showing');
|
|
};
|
|
}
|
|
}
|