fix the onLogout handler if the window hasn't been rendered yet

This commit is contained in:
Damien Churchill 2009-04-27 12:53:58 +00:00
parent 253d08d2f9
commit a9392f9002

View File

@ -225,7 +225,9 @@ Copyright:
onLogout: function() {
this.disconnect();
this.hide();
if (!this.hidden && this.rendered) {
this.hide();
}
},
onRemove: function(button) {