Fix: return to main_menu.html not to menu
This commit is contained in:
@@ -154,7 +154,7 @@ var Game = {
|
||||
|
||||
back: function() {
|
||||
sessionStorageManager.resetPlayingAppData();
|
||||
location.href = '../../web/client/menu_app.html';
|
||||
location.href = '../../web/client/main_menu.html';
|
||||
},
|
||||
|
||||
/*
|
||||
|
||||
@@ -81,7 +81,7 @@ var Game = {
|
||||
|
||||
back: function() {
|
||||
sessionStorageManager.resetPlayingAppData();
|
||||
location.href = '../../web/client/menu_app.html';
|
||||
location.href = '../../web/client/main_menu.html';
|
||||
},
|
||||
|
||||
countDown: function() {
|
||||
|
||||
@@ -118,7 +118,7 @@ var Game = {
|
||||
|
||||
back: function() {
|
||||
sessionStorageManager.resetPlayingAppData();
|
||||
location.href = '../../web/client/menu_app.html';
|
||||
location.href = '../../web/client/main_menu.html';
|
||||
},
|
||||
|
||||
/*
|
||||
|
||||
@@ -108,7 +108,7 @@ var Game = {
|
||||
|
||||
back: function() {
|
||||
sessionStorageManager.resetPlayingAppData();
|
||||
location.href = '../../web/client/menu_app.html';
|
||||
location.href = '../../web/client/main_menu.html';
|
||||
},
|
||||
|
||||
|
||||
|
||||
@@ -95,7 +95,7 @@ var Game = {
|
||||
|
||||
back: function() {
|
||||
sessionStorageManager.resetPlayingAppData();
|
||||
location.href = '../../web/client/menu_app.html';
|
||||
location.href = '../../web/client/main_menu.html';
|
||||
},
|
||||
|
||||
initListeners: function() {
|
||||
|
||||
@@ -142,7 +142,7 @@ TypingExamination.prototype.fontLoaded = function() {
|
||||
|
||||
// current text line number / total line number
|
||||
// textStyleBasic.font = "38px Arial";
|
||||
textStyleBasic.font = "38px Nanum Gothic Coding";
|
||||
textStyleBasic.font = "26px Nanum Gothic Coding";
|
||||
textStyleBasic.backgroundColor = null;
|
||||
this.textTypingLine = game.add.text(
|
||||
RECORD_POSITION_X, TYPING_CONTENT_Y,
|
||||
@@ -600,7 +600,8 @@ TypingExamination.prototype.playNextContent = function() {
|
||||
|
||||
TypingExamination.prototype.showPlayingWordNumber = function() {
|
||||
var currentLine = this.typingIndex + 1;
|
||||
this.textTypingLine.text = currentLine + " / " + this.typingContentLength;
|
||||
// this.textTypingLine.text = currentLine + " / " + this.typingContentLength;
|
||||
this.textTypingLine.text = "9,999/9,999";
|
||||
}
|
||||
|
||||
TypingExamination.prototype.setTimeTypingStart = function() {
|
||||
|
||||
@@ -121,7 +121,7 @@ var TypingPractice = {
|
||||
|
||||
back: function() {
|
||||
sessionStorageManager.resetPlayingAppData();
|
||||
location.href = '../../web/client/menu_typing_practice.html';
|
||||
location.href = '../../web/client/main_menu.html';
|
||||
},
|
||||
|
||||
startGame: function() {
|
||||
|
||||
@@ -183,7 +183,7 @@ var TypingTest = {
|
||||
|
||||
back: function() {
|
||||
sessionStorageManager.resetPlayingAppData();
|
||||
location.href = '../../web/client/menu_typing_test.html';
|
||||
location.href = '../../web/client/main_menu.html';
|
||||
},
|
||||
|
||||
startGame: function() {
|
||||
|
||||
@@ -147,7 +147,7 @@ var WhacAMole = {
|
||||
|
||||
back: function() {
|
||||
sessionStorageManager.resetPlayingAppData();
|
||||
location.href = '../../web/client/menu_app.html';
|
||||
location.href = '../../web/client/main_menu.html';
|
||||
},
|
||||
|
||||
startGame: function() {
|
||||
|
||||
@@ -100,7 +100,7 @@ var WordFlyingSaucer = {
|
||||
|
||||
back: function() {
|
||||
sessionStorageManager.resetPlayingAppData();
|
||||
location.href = '../../web/client/menu_app.html';
|
||||
location.href = '../../web/client/main_menu.html';
|
||||
},
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user