aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-11-07 14:29:52 +0000
committerMario <mario@mariovavti.com>2024-11-07 14:29:52 +0000
commit17183cc5dcbc5eb825d353d9f24fa74b2e4c6cdd (patch)
treeeb79753d8464f14cc01b48558bfa3f44a1760230
parent939e5d9ca59a9fb9dd86108715ea05c661be4040 (diff)
downloadvolse-hubzilla-17183cc5dcbc5eb825d353d9f24fa74b2e4c6cdd.tar.gz
volse-hubzilla-17183cc5dcbc5eb825d353d9f24fa74b2e4c6cdd.tar.bz2
volse-hubzilla-17183cc5dcbc5eb825d353d9f24fa74b2e4c6cdd.zip
fix allday not set if a rsource is provided
-rw-r--r--view/tpl/cdav_calendar.tpl6
1 files changed, 6 insertions, 0 deletions
diff --git a/view/tpl/cdav_calendar.tpl b/view/tpl/cdav_calendar.tpl
index 61932a168..7399a2b59 100644
--- a/view/tpl/cdav_calendar.tpl
+++ b/view/tpl/cdav_calendar.tpl
@@ -357,6 +357,12 @@ $(document).ready(function() {
event_uri = resource.event_hash;
event_xchan = resource.event_xchan;
+ allday = resource.adjust ? 0 : 1;
+
+ if (allday) {
+ $('#id_dtstart_wrapper, #id_dtend_wrapper, #id_timezone_select_wrapper').hide();
+ }
+
$('#calendar_select').val('channel_calendar').attr('disabled', true);
$('#id_title').val(resource.summary);