docbrown/app/assets/javascripts/initializers/initializeUserProfilePage.js
Ben Halpern a934968190
Add dropdown and report-abuse for users (#3788)
* Add dropdown and report-abuse for users

* Move script to JS area
2019-08-21 16:43:52 -04:00

11 lines
307 B
JavaScript

'use strict';
function initializeUserProfilePage() {
if (document.getElementById('user-profile-dropdown')) {
document.getElementById('user-profile-dropdown').onclick = function() {
document
.getElementById('user-profile-dropdownmenu')
.classList.toggle('showing');
};
}
}