diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-11-26 23:19:06 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-11-26 23:19:06 +0100 |
commit | 91b35c53494f0ab4b53430dd39bbbc21f019912a (patch) | |
tree | 1280c5facbb8ce630a48f648389ab2b2e3020503 /view/tpl/event_head.tpl | |
parent | 056db37c662864954181fea9c1af48d69866340f (diff) | |
download | volse-hubzilla-91b35c53494f0ab4b53430dd39bbbc21f019912a.tar.gz volse-hubzilla-91b35c53494f0ab4b53430dd39bbbc21f019912a.tar.bz2 volse-hubzilla-91b35c53494f0ab4b53430dd39bbbc21f019912a.zip |
various css fixes
Diffstat (limited to 'view/tpl/event_head.tpl')
-rwxr-xr-x | view/tpl/event_head.tpl | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/view/tpl/event_head.tpl b/view/tpl/event_head.tpl index f587d69a0..6a38057fd 100755 --- a/view/tpl/event_head.tpl +++ b/view/tpl/event_head.tpl @@ -71,32 +71,32 @@ switch(view.name){ case "month": element.find(".fc-title").html( - "<img src='{0}' style='height:12px;width:12px;' title='{1}'> <span title='{3}\r\n\r\n{4}'>{2}</span>".format( + "<img src='{0}' style='height:12px;width:12px;' title='{1}'> <span title='{3}{4}'>{2}</span>".format( event.item['author']['xchan_photo_s'], event.item['author']['xchan_name'], event.title, - event.item.description, - event.item.location.replace(/(<([^>]+)>)/ig,"") + event.item.description ? event.item.description + "\r\n\r\n" : '', + event.item.location ? aStr['location'] + ': ' + event.item.location.replace(/(<([^>]+)>)/ig,"") : '' )); break; case "agendaWeek": element.find(".fc-title").html( - "<img src='{0}' style='height:12px;width:12px;'> {1}: <span title='{3}\r\n\r\n{4}'>{2}</span>".format( + "<img src='{0}' style='height:12px;width:12px;'> {1}: <span title='{3}{4}'>{2}</span>".format( event.item['author']['xchan_photo_s'], event.item['author']['xchan_name'], event.title, - event.item.description, - event.item.location.replace(/(<([^>]+)>)/ig,"") + event.item.description ? event.item.description + "\r\n\r\n" : '', + event.item.location ? aStr['location'] + ': ' + event.item.location.replace(/(<([^>]+)>)/ig,"") : '' )); break; case "agendaDay": element.find(".fc-title").html( - "<img src='{0}' style='height:12px;width:12px;'> {1}: <span title='{3}\r\n\r\n{4}'>{2}</span>".format( + "<img src='{0}' style='height:12px;width:12px;'> {1}: <span title='{3}{4}'>{2}</span>".format( event.item['author']['xchan_photo_s'], event.item['author']['xchan_name'], event.title, - event.item.description, - event.item.location.replace(/(<([^>]+)>)/ig,"") + event.item.description ? event.item.description + "\r\n\r\n" : '', + event.item.location ? aStr['location'] + ': ' + event.item.location.replace(/(<([^>]+)>)/ig,"") : '' )); break; } |