docbrown/app/assets/javascripts/initializers/initializeUserProfilePage.js
Nick Taylor 39618f66a2 Fixed some more Frontend Lint Issues (#3792)
* Removed a file that is not used.

* Fixed some lint issues

* Fixed some more lint issues
2019-08-23 10:21:28 -04:00

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');
};
}
}