Changeset a9392f


Ignore:
Timestamp:
04/27/2009 12:53:58 PM (16 years ago)
Author:
Damien Churchill <damoc@gmail.com>
Branches:
2.0.x, develop, extjs4-port, master
Children:
c4cdd7
Parents:
253d08
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • deluge/ui/web/js/Deluge.ConnectionManager.js

    r253d08 ra9392f  
    226226                onLogout: function() {
    227227                        this.disconnect();
    228                         this.hide();
     228                        if (!this.hidden && this.rendered) {
     229                                this.hide();
     230                        }
    229231                },
    230232               
Note: See TracChangeset for help on using the changeset viewer.