forked from mirror/Part-DB.Part-DB-server
11 lines
207 B
JavaScript
11 lines
207 B
JavaScript
|
import {Controller} from "@hotwired/stimulus";
|
||
|
|
||
|
export default class extends Controller
|
||
|
{
|
||
|
connect() {
|
||
|
this.element.onclick = function() {
|
||
|
window.u2fauth.register();
|
||
|
}
|
||
|
}
|
||
|
}
|