Skip to content

Commit 32effdc

Browse files
authored
Fix indentation
1 parent 4fe384a commit 32effdc

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

js/index.js

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ let appSortInfo = {}; // list of data to sort by, from appdates.csv { created, m
33
let appCounts = {};
44
let files = []; // list of files on the Espruimo Device
55
const DEFAULTSETTINGS = {
6-
pretokenise : true,
7-
minify : false, // disabled by default due to https://github.com/espruino/BangleApps/pull/355#issuecomment-620124162
8-
settime : false, // Always update time when we connect
9-
favourites : ["launch"],
10-
appsFavoritedInSession : [],
11-
language : "",
12-
bleCompat: false, // 20 byte MTU BLE Compatibility mode
13-
sendUsageStats: true, // send usage stats to banglejs.com
14-
alwaysAllowUpdate : false, // Always show "reinstall app" button regardless of the version
15-
autoReload: false, // Automatically reload watch after app App Loader actions (removes "Hold button" prompt)
16-
noPackets: false, // Enable File Upload Compatibility mode (disables binary packet upload)
6+
pretokenise : true,
7+
minify : false, // disabled by default due to https://github.com/espruino/BangleApps/pull/355#issuecomment-620124162
8+
settime : false, // Always update time when we connect
9+
favourites : ["launch"],
10+
language : "",
11+
appsFavoritedInSession : [], // List of apps favorited before database updates
12+
bleCompat: false, // 20 byte MTU BLE Compatibility mode
13+
sendUsageStats: true, // send usage stats to banglejs.com
14+
alwaysAllowUpdate : false, // Always show "reinstall app" buttonregardless of the version
15+
autoReload: false, // Automatically reload watch after app App Loader actions (removes "Hold button" prompt)
16+
noPackets: false, // Enable File Upload Compatibility mode (disables binary packet upload)
1717
};
1818
let SETTINGS = JSON.parse(JSON.stringify(DEFAULTSETTINGS)); // clone
1919

0 commit comments

Comments
 (0)