From: Scott Barnett Date: Mon, 26 Sep 2011 19:26:49 +0000 (+1000) Subject: Fixed delete cross positioning issue. X-Git-Tag: v3.0~140 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f4ecf47e619c7b182e08f23c6474717ac5df99fe;p=nextcloud-server.git Fixed delete cross positioning issue. --- diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index 1bd1ac1075b..aaffc3824ea 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -215,9 +215,12 @@ function addUser(uid_shared_with, permissions, parentFolder) { } else { var checked = ((permissions > 0) ? 'checked="checked"' : 'style="display:none;"'); var style = ((permissions == 0) ? 'style="display:none;"' : ''); - var user = '
  • '+uid_shared_with; - user += ''; - user += '
  • '; + var user = '
  • '; + user += ''; + user += uid_shared_with; + user += ''; + user += ''; + user += '
  • '; } $('#share_with option[value="'+uid_shared_with+'"]').remove(); $('#share_with').trigger('liszt:updated');