diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-05-17 21:51:27 +0200 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-05-17 21:51:38 +0200 |
commit | 6146b6a1314a7bedd09d4f0451b3f77f6faf61f7 (patch) | |
tree | 2f473045ba4aafd123d5ca73db28f54bca006c8d /apps/calendar/templates | |
parent | 57d41bb1f8e418e62718cc18013d153f5eb35107 (diff) | |
download | nextcloud-server-6146b6a1314a7bedd09d4f0451b3f77f6faf61f7.tar.gz nextcloud-server-6146b6a1314a7bedd09d4f0451b3f77f6faf61f7.zip |
fix paths to images and set height for calendar management dialog
Diffstat (limited to 'apps/calendar/templates')
-rw-r--r-- | apps/calendar/templates/part.choosecalendar.php | 2 | ||||
-rw-r--r-- | apps/calendar/templates/share.dropdown.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/calendar/templates/part.choosecalendar.php b/apps/calendar/templates/part.choosecalendar.php index a140316ea07..8d621cc3630 100644 --- a/apps/calendar/templates/part.choosecalendar.php +++ b/apps/calendar/templates/part.choosecalendar.php @@ -24,7 +24,7 @@ for($i = 0; $i < count($option_calendars); $i++){ </tr> <tr> <td colspan="6"> - <p style="margin: 0 auto;width: 90%;"><input style="display:none;width: 90%;float: left;" type="text" id="caldav_url" onmouseover="$('#caldav_url').select();" title="<?php echo $l->t("CalDav Link"); ?>"><img id="caldav_url_close" style="height: 20px;vertical-align: middle;display: none;" src="../../core/img/actions/delete.svg" alt="close" onclick="$('#caldav_url').hide();$('#caldav_url_close').hide();"/></p> + <p style="margin: 0 auto;width: 90%;"><input style="display:none;width: 90%;float: left;" type="text" id="caldav_url" onmouseover="$('#caldav_url').select();" title="<?php echo $l->t("CalDav Link"); ?>"><img id="caldav_url_close" style="height: 20px;vertical-align: middle;display: none;" src="<?php echo OCP\Util::imagePath('core', 'actions/delete.svg') ?>" alt="close" onclick="$('#caldav_url').hide();$('#caldav_url_close').hide();"/></p> </td> </tr> </table><br> diff --git a/apps/calendar/templates/share.dropdown.php b/apps/calendar/templates/share.dropdown.php index 20d4c19bc19..07b4c4bced5 100644 --- a/apps/calendar/templates/share.dropdown.php +++ b/apps/calendar/templates/share.dropdown.php @@ -63,7 +63,7 @@ echo OCP\html_select_options($allgroups, array()); <script> $('#sharewithgroup_<?php echo $group['share']; ?> > img').click(function(){ $('#share_group option[value="<?php echo $group['share']; ?>"]').removeAttr('disabled'); - Calendar.UI.Share.unshare(<?php echo $id; ?>, '<?php echo (array_key_exists('calid', $_)?'calendar':'event');?>, '<?php echo $group['share']; ?>', 'group'); ?> + Calendar.UI.Share.unshare(<?php echo $id; ?>, '<?php echo (array_key_exists('calid', $_)?'calendar':'event');?>', '<?php echo $group['share']; ?>', 'group'); $('#sharewithgroup_<?php echo $group['share']; ?>').remove(); $("#share_group").trigger("liszt:updated"); }); |