Browse Source

Don't show selection in selection bar

Fixes https://github.com/nextcloud/spreed/issues/66
pull/69/head
Lukas Reschke 9 years ago
parent
commit
197d7e5e78
No known key found for this signature in database GPG Key ID: B9F6980CF6E759B1
  1. 4
      js/app.js

4
js/app.js

@ -72,8 +72,8 @@
formatResult: function (element) {
return '<span><div class="avatar" data-user="' + escapeHTML(element.id) + '" data-user-display-name="' + escapeHTML(element.id) + '"></div>' + escapeHTML(element.id) + '</span>';
},
formatSelection: function (element) {
return '<span><div class="avatar" data-user="' + escapeHTML(element.id) + '" data-user-display-name="' + escapeHTML(element.id) + '"></div>' + escapeHTML(element.id) + '</span>';
formatSelection: function () {
return '<span class="select2-default" style="padding-left: 0;">'+OC.L10N.translate('spreed', 'Choose person…')+'</span>';
}
});
$('#edit-roomname').on("change", function(e) {

Loading…
Cancel
Save