Add: setup.html basic

This commit is contained in:
2019-03-15 09:02:14 +09:00
parent 27fa44a01d
commit 65fd75eb95
4 changed files with 280 additions and 1 deletions
+4 -1
View File
@@ -44,7 +44,10 @@ var MenuApp = {
// top ui
var screenTopUI = new ScreenTopUI();
screenTopUI.makeBackButton( (function() { this.back(); }).bind(this) );
screenTopUI.makeSetupButton( (function() { console.log("setup"); }).bind(this) );
screenTopUI.makeSetupButton( (function() {
console.log("setup");
location.href = '../../web/client/setup.html';
}).bind(this) );
screenTopUI.makeFullScreenButton();