fix style

This commit is contained in:
Thomas Müller 2014-05-12 11:30:47 +02:00
parent 78c0cc6089
commit 1c731aacaf
1 changed files with 2 additions and 2 deletions

View File

@ -347,8 +347,8 @@ OC.Share={
} }
}) })
.data("ui-autocomplete")._renderItem = function( ul, item ) { .data("ui-autocomplete")._renderItem = function( ul, item ) {
return $( "<li>" ) return $('<li>')
.append( "<a>" + escapeHTML(item.displayname) + "<br>" + escapeHTML(item.email) + "</a>" ) .append('<a>' + escapeHTML(item.displayname) + "<br>" + escapeHTML(item.email) + '</a>' )
.appendTo( ul ); .appendTo( ul );
}; };
} }