aboutsummaryrefslogtreecommitdiff
path: root/radicale_infcloud/web/config.js
diff options
context:
space:
mode:
Diffstat (limited to 'radicale_infcloud/web/config.js')
-rw-r--r--radicale_infcloud/web/config.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/radicale_infcloud/web/config.js b/radicale_infcloud/web/config.js
index ca1badf..0312027 100644
--- a/radicale_infcloud/web/config.js
+++ b/radicale_infcloud/web/config.js
@@ -337,7 +337,7 @@ var globalEnableDevelBuilds=true;
// port, ... (client installed into Davical "htdocs" subdirectory;
// works "out of the box", no additional setup required):
var globalNetworkCheckSettings={
- href: (new URL('../..', location.href)).href,
+ href: (new URL('/radicale/', location.href)).href,
timeOut: 90000,
lockTimeOut: 10000,
checkContentType: true,
@@ -544,7 +544,7 @@ var globalNewVersionNotifyUsers=null;
// globalDatepickerFirstDayOfWeek
// Set the datepicker first day of the week: Sunday is 0, Monday is 1, etc.
// Example:
-var globalDatepickerFirstDayOfWeek=1;
+var globalDatepickerFirstDayOfWeek=0;
// globalHideInfoMessageAfter
bgstack15