mirror of
https://github.com/danbulant/console-hub
synced 2026-05-26 05:22:03 +00:00
16 lines
No EOL
435 B
JavaScript
16 lines
No EOL
435 B
JavaScript
const utils = require("../../utils");
|
|
const gui = require("./gui");
|
|
|
|
function gamepadConnected(){
|
|
console.log("Gamepad connected");
|
|
|
|
var view = document.getElementById("view");
|
|
utils.removeChildNodes(view);
|
|
|
|
gui.showTitle("Your profile");
|
|
gui.showDescription("Select or login with your Pushr account to continue");
|
|
|
|
gui.renderCardList(utils.usersToCards(utils.getUsers()));
|
|
}
|
|
|
|
module.exports = gamepadConnected; |