-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreplaceWindow.js
More file actions
64 lines (54 loc) · 2.24 KB
/
replaceWindow.js
File metadata and controls
64 lines (54 loc) · 2.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
function showRegister(){
$(document.getElementById("RegisterSection")).show();
$(document.getElementById("LoginSection")).hide();
$(document.getElementById("GamePlaySection")).hide();
$(document.getElementById("SettingsSection")).hide();
$(document.getElementById("gameRules")).hide();
//$(document.getElementById("Welcome")).hide();
return true;
}
function showLogin(){
$(document.getElementById("RegisterSection")).hide();
$(document.getElementById("LoginSection")).show();
$(document.getElementById("GamePlaySection")).hide();
$(document.getElementById("gameRules")).hide();
$(document.getElementById("SettingsSection")).hide();
//$(document.getElementById("Welcome")).hide();
return true;
}
function showSetting(){
$(document.getElementById("RegisterSection")).hide();
$(document.getElementById("LoginSection")).hide();
$(document.getElementById("GamePlaySection")).hide();
$(document.getElementById("SettingsSection")).show();
$(document.getElementById("gameRules")).hide();
//$(document.getElementById("Welcome")).hide();
return true;
}
function showGame(){
$(document.getElementById("RegisterSection")).hide();
$(document.getElementById("LoginSection")).hide();
$(document.getElementById("GamePlaySection")).show();
$(document.getElementById("SettingsSection")).hide();
$(document.getElementById("Welcome")).hide();
$(document.getElementById("gameRules")).hide();
return true;
}
function showGameRules(){
$(document.getElementById("RegisterSection")).hide();
$(document.getElementById("LoginSection")).hide();
$(document.getElementById("GamePlaySection")).hide();
$(document.getElementById("SettingsSection")).hide();
$(document.getElementById("Welcome")).show();
$(document.getElementById("gameRules")).show();
return true;
}
function showAbout(){
$(document.getElementById("RegisterSection")).hide();
$(document.getElementById("LoginSection")).hide();
$(document.getElementById("GamePlaySection")).hide();
$(document.getElementById("SettingsSection")).hide();
$(document.getElementById("WelcomeDialog")).show();
$(document.getElementById("gameRules")).hide();
// showdialog();
}