aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--radicale_web/web/infcloud/config.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/radicale_web/web/infcloud/config.js b/radicale_web/web/infcloud/config.js
index d203444..560c1d1 100644
--- a/radicale_web/web/infcloud/config.js
+++ b/radicale_web/web/infcloud/config.js
@@ -339,8 +339,7 @@ var globalEnableDevelBuilds=true;
var globalNetworkCheckSettings={
href: location.protocol+'//'+location.hostname+
(location.port ? ':'+location.port: '')+
- location.pathname.replace(RegExp('/+[^/]+/*(index\.html)?$'),'')+
- '/caldav.php/',
+ location.pathname.replace(RegExp('(/+[^/]+/*){2}(index\.html)?$'),'')+'/',
timeOut: 90000,
lockTimeOut: 10000,
checkContentType: true,
@@ -421,7 +420,7 @@ var globalSyncResourcesInterval=120000;
// If undefined or false, the synchronization button is disabled.
// NOTE: enable this option only if you really know what are you doing!
// Example:
-var globalEnableRefresh=false;
+var globalEnableRefresh=true;
// globalEnableKbNavigation
@@ -531,7 +530,7 @@ var globalResourceAlphabetSorting=true;
// If undefined (or empty), update notifications will be shown to all users.
// Example:
// globalNewVersionNotifyUsers=['admin', 'peter'];
-var globalNewVersionNotifyUsers=[];
+var globalNewVersionNotifyUsers=null;
// globalDatepickerFormat
bgstack15