Merge pull request #10582 from nextcloud/fix/app-password-enter-this-context

Fix `this` context for enter-key handler on app tokens
This commit is contained in:
John Molakvoæ 2018-08-08 12:38:50 +02:00 committed by GitHub
commit 3884038765
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -245,7 +245,7 @@
if (event.which === 13) {
this._addAppPassword();
}
});
}.bind(this));
this._result = $('#app-password-result');
this._newAppLoginName = $('#new-app-login-name');