Browse Source

Fix undefined this.connection when creating a room

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/709/head
Joas Schilling 8 years ago
parent
commit
bcab6e09c0
No known key found for this signature in database GPG Key ID: 7076EA9751AACDDA
  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