mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-06 19:34:15 -05:00
14 lines
384 B
JavaScript
14 lines
384 B
JavaScript
|
|
(function (window) {
|
||
|
|
"use strict";
|
||
|
|
|
||
|
|
window.GOVUK.Modules.AuthenticateSecurityKey = function () {
|
||
|
|
this.start = function (component) {
|
||
|
|
$(component)
|
||
|
|
.on('click', function (event) {
|
||
|
|
event.preventDefault();
|
||
|
|
console.log('pretend you just logged in okay');
|
||
|
|
});
|
||
|
|
};
|
||
|
|
};
|
||
|
|
})(window);
|