mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-28 14:20:59 -05:00
19 lines
306 B
JavaScript
19 lines
306 B
JavaScript
|
|
(function(Modules) {
|
||
|
|
"use strict";
|
||
|
|
|
||
|
|
Modules.Dropdown = function() {
|
||
|
|
|
||
|
|
this.start = function(component) {
|
||
|
|
|
||
|
|
$('.dropdown-toggle', component)
|
||
|
|
.on(
|
||
|
|
'click', () => $(component).toggleClass('js-closed')
|
||
|
|
)
|
||
|
|
.trigger('click');
|
||
|
|
|
||
|
|
};
|
||
|
|
|
||
|
|
};
|
||
|
|
|
||
|
|
})(window.GOVUK.Modules);
|