Add JSDoc and rename method

pull/1033/head
Ilya Daynatovich 8 years ago
parent 442d2fa316
commit cbc7fe5d98
  1. 10
      modules/UI/invite/InviteDialogView.js

@ -290,7 +290,7 @@ export default class InviteDialogView {
$(removePassword).on('click', () => {
this.model.setRoomUnlocked();
});
let boundSetPassword = this.setPassword.bind(this);
let boundSetPassword = this._setPassword.bind(this);
$(document).on('click', addPasswordBtn, boundSetPassword);
let boundDisablePass = this.disableAddPassIfInputEmpty.bind(this);
$(document).on('keypress', newPasswordInput, boundDisablePass);
@ -300,12 +300,16 @@ export default class InviteDialogView {
$(newPasswordInput).on('keydown', (e) => {
if (e.keyCode === ENTER_KEY) {
e.stopPropagation();
this.setPassword();
this._setPassword();
}
});
}
setPassword() {
/**
* Marking room as locked
* @private
*/
_setPassword() {
let $passInput = $('#newPasswordInput');
let newPass = $passInput.val();

Loading…
Cancel
Save