-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshowHideParam.js
More file actions
41 lines (40 loc) · 834 Bytes
/
Copy pathshowHideParam.js
File metadata and controls
41 lines (40 loc) · 834 Bytes
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
function showAllParam() {
wifiTitle.show();
ssidTitle.show();
ssidInput.show();
ssidPw.show();
pwInput.show();
WiFiButton.show();
}
function hideAllParam() {
wifiTitle.hide();
ssidTitle.hide();
ssidInput.hide();
ssidPw.hide();
pwInput.hide();
WiFiButton.hide();
AlexaEnableTitle.hide();
AlexaOnTitle.hide();
AlexaOffTitle.hide();
AlexaStatusSlider.hide();
OTAButton.hide();
OTATitle.hide();
ResetButton.hide();
DebugInput.hide();
DebugButton.hide();
ColorPickerTitle.hide();
ColorPicker.hide();
DownloadButton.hide();
}
function showWifiParam(){
AlexaEnableTitle.show();
AlexaStatusSlider.show();
AlexaOnTitle.show();
AlexaOffTitle.show();
OTAButton.show();
OTATitle.show();
ResetButton.show();
ColorPickerTitle.show();
ColorPicker.show();
DownloadButton.show();
}