showPrefsDialog: function() {
this.checkPort(true);
$('body').addClass('prefs_showing');
- $('#prefs_container').show();
+ $('#prefs_container').fadeIn();
this.hideMobileAddressbar();
this.updateButtonStates();
this.togglePeriodicSessionRefresh(false);
$('body.prefs_showing').removeClass('prefs_showing');
if (isMobileDevice)
this.hideMobileAddressbar();
- $('#prefs_container').hide();
+ $('#prefs_container').fadeOut();
this.updateButtonStates();
this.togglePeriodicSessionRefresh(true);
},
showStatsDialog: function() {
this.loadDaemonStats();
$('body').addClass('stats_showing');
- $('#stats_container').show();
+ $('#stats_container').fadeIn();
this.hideMobileAddressbar();
this.updateButtonStates();
this.togglePeriodicStatsRefresh(true);
$('body.stats_showing').removeClass('stats_showing');
if (isMobileDevice)
this.hideMobileAddressbar();
- $('#stats_container').hide();
+ $('#stats_container').fadeOut();
this.updateButtonStates();
this.togglePeriodicStatsRefresh(false);
},