Fix: back button error

This commit is contained in:
2018-10-15 18:30:40 +09:00
parent c2d61611fc
commit 7826f62a27
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ var Result = {
// top ui
var screenTopUI = new ScreenTopUI();
screenTopUI.makeBackButton( function() { (function() { this.back(); }).bind(this) });
screenTopUI.makeBackButton( (function() { this.back(); }).bind(this) );
screenTopUI.makeFullScreenButton();
+1 -1
View File
@@ -29,7 +29,7 @@ var Start = {
// top ui
var screenTopUI = new ScreenTopUI();
screenTopUI.makeBackButton( function() { (function() { this.back(); }).bind(this) });
screenTopUI.makeBackButton( (function() { this.back(); }).bind(this) );
screenTopUI.makeFullScreenButton();