Fix Bug 37586
This commit is contained in:
parent
b77d643404
commit
69b1b7b11a
|
@ -68,7 +68,7 @@ define([
|
|||
var me = this;
|
||||
Common.NotificationCenter.on('layout:changed', function(area){
|
||||
Common.Utils.asyncCall(function(e) {
|
||||
if ( e == 'toolbar' && me.panelChat.$el.is(':visible') ) {
|
||||
if ( (e == 'toolbar' || e == 'status') && me.panelChat.$el.is(':visible') ) {
|
||||
me.panelChat.updateLayout(true);
|
||||
me.panelChat.setupAutoSizingTextBox();
|
||||
}
|
||||
|
|
|
@ -133,7 +133,7 @@ define([
|
|||
Common.NotificationCenter.on('app:comment:add', _.bind(this.onAppAddComment, this));
|
||||
Common.NotificationCenter.on('layout:changed', function(area){
|
||||
Common.Utils.asyncCall(function(e) {
|
||||
if ( e == 'toolbar' && this.view.$el.is(':visible') ) {
|
||||
if ( (e == 'toolbar' || e == 'status') && this.view.$el.is(':visible') ) {
|
||||
this.onAfterShow();
|
||||
}
|
||||
}, this, area);
|
||||
|
|
Loading…
Reference in a new issue