Skip to content

Commit 04bc1c8

Browse files
author
Andreas Savvides
committed
Replacing tabs with whitespace for codebase consistency
1 parent 7106d2d commit 04bc1c8

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

coder-base/apps/wifi/app.js

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -90,26 +90,26 @@ exports.api_wifi_configure_handler = function( req, res ) {
9090

9191

9292
var wpatemplate = "network={\n" +
93-
"\tssid=\"[ssid]\"\n" +
94-
"\tpsk=\"[password]\"\n" +
95-
"\tscan_ssid=1\n" +
96-
"\tpriority=10\n" +
97-
"}\n";
93+
"\tssid=\"[ssid]\"\n" +
94+
"\tpsk=\"[password]\"\n" +
95+
"\tscan_ssid=1\n" +
96+
"\tpriority=10\n" +
97+
"}\n";
9898

9999
var weptemplate = "network={\n" +
100-
"\tssid=\"[ssid]\"\n" +
101-
"\twep_key0=\"[password]\"\n" +
102-
"\tscan_ssid=1\n" +
103-
"\tkey_mgmt=NONE\n" +
104-
"\tpriority=10\n" +
105-
"}\n";
100+
"\tssid=\"[ssid]\"\n" +
101+
"\twep_key0=\"[password]\"\n" +
102+
"\tscan_ssid=1\n" +
103+
"\tkey_mgmt=NONE\n" +
104+
"\tpriority=10\n" +
105+
"}\n";
106106

107107
var opentemplate = "network={\n" +
108-
"\tssid=\"[ssid]\"\n" +
109-
"\tscan_ssid=1\n" +
110-
"\tkey_mgmt=NONE\n" +
111-
"\tpriority=10\n" +
112-
"}\n";
108+
"\tssid=\"[ssid]\"\n" +
109+
"\tscan_ssid=1\n" +
110+
"\tkey_mgmt=NONE\n" +
111+
"\tpriority=10\n" +
112+
"}\n";
113113

114114

115115
var confentry="";
@@ -198,7 +198,7 @@ exports.api_wifi_list_handler = function( req, res ) {
198198
var access_points = {};
199199
var debug="";
200200

201-
var addHighestSignal = function( ssid, type, signal ) {
201+
var addHighestSignal = function( ssid, type, signal ) {
202202
if ( !access_points[ssid] ) {
203203
access_points[ssid] = { ssid: ssid, type: type, signal: signal };
204204
} else if ( access_points[ssid].signal < signal ) {

0 commit comments

Comments
 (0)