Fix reference to missing parameter.
This commit is contained in:
parent
6379b0dd7a
commit
f83043e5ab
@ -743,7 +743,7 @@
|
|||||||
return this;
|
return this;
|
||||||
},
|
},
|
||||||
|
|
||||||
afterShown: function () {
|
afterShown: function (focus) {
|
||||||
if (_converse.connection.connected) {
|
if (_converse.connection.connected) {
|
||||||
// Without a connection, we haven't yet initialized
|
// Without a connection, we haven't yet initialized
|
||||||
// localstorage
|
// localstorage
|
||||||
@ -762,7 +762,7 @@
|
|||||||
if (focus) { this.focus(); }
|
if (focus) { this.focus(); }
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
utils.fadeIn(this.el, this.afterShown.bind(this));
|
utils.fadeIn(this.el, _.bind(this.afterShown, this, focus));
|
||||||
},
|
},
|
||||||
|
|
||||||
show: function (focus) {
|
show: function (focus) {
|
||||||
|
Loading…
Reference in New Issue
Block a user