Browse Source

Merge pull request #709 from nextcloud/bugfix/noid/error-when-creating-rooms

Fix undefined this.connection when creating a room
pull/717/head
Joas Schilling 8 years ago
committed by GitHub
parent
commit
fb64b35f0c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      js/app.js

4
js/app.js

@ -68,7 +68,7 @@
dataType: 'json',
quietMillis: 100,
data: function (term) {
OCA.SpreedMe.app._searchTerm = term;
this._searchTerm = term;
return {
format: 'json',
search: term,
@ -164,7 +164,7 @@
console.log("Unknown type", e.object.type);
break;
}
});
}.bind(this));
$('#select-participants').on("select2-loaded", function() {
$('.select2-drop').find('.avatar').each(function () {

Loading…
Cancel
Save