aboutsummaryrefslogtreecommitdiff
path: root/radicale_web/web/infcloud/config.js
diff options
context:
space:
mode:
Diffstat (limited to 'radicale_web/web/infcloud/config.js')
-rw-r--r--radicale_web/web/infcloud/config.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/radicale_web/web/infcloud/config.js b/radicale_web/web/infcloud/config.js
index ff4502d..cfb946f 100644
--- a/radicale_web/web/infcloud/config.js
+++ b/radicale_web/web/infcloud/config.js
@@ -334,8 +334,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
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,
@@ -416,7 +415,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
bgstack15