mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-04-02 08:30:10 -04:00
15 lines
299 B
JavaScript
15 lines
299 B
JavaScript
|
|
(function(window) {
|
||
|
|
"use strict";
|
||
|
|
|
||
|
|
window.GOVUK.Modules.RegisterSecurityKey = function() {
|
||
|
|
this.start = function(component) {
|
||
|
|
|
||
|
|
$(component)
|
||
|
|
.on('click', function(event) {
|
||
|
|
event.preventDefault();
|
||
|
|
alert('not implemented');
|
||
|
|
});
|
||
|
|
};
|
||
|
|
};
|
||
|
|
})(window);
|