12 lines
202 B
JavaScript
12 lines
202 B
JavaScript
|
"use strict"; /* global document, send */
|
||
|
|
||
|
|
||
|
|
||
|
document.getElementById("get-started").addEventListener("click", event => {
|
||
|
event.preventDefault();
|
||
|
|
||
|
send({
|
||
|
message: "auth me with github"
|
||
|
});
|
||
|
});
|