aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUnrud <unrud@openaliasbox.org>2017-03-10 23:04:48 +0100
committerUnrud <unrud@openaliasbox.org>2017-03-11 00:42:55 +0100
commit6fa9dacafa185237454fd34cae753908116b44aa (patch)
tree3ee629b143ce74750a0aca4652129fe290c6c500
parentAdd InfCloud (diff)
downloadradicaleinfcloud-6fa9dacafa185237454fd34cae753908116b44aa.tar.gz
radicaleinfcloud-6fa9dacafa185237454fd34cae753908116b44aa.tar.bz2
radicaleinfcloud-6fa9dacafa185237454fd34cae753908116b44aa.zip
Configure InfCloud
-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