Fix an issue causing the lag icon to lose its color
This commit is contained in:
@@ -360,8 +360,8 @@ define([
|
|||||||
});
|
});
|
||||||
var title;
|
var title;
|
||||||
var $lag = $(lagElement);
|
var $lag = $(lagElement);
|
||||||
$lag.attr('class', '');
|
|
||||||
if (lag) {
|
if (lag) {
|
||||||
|
$lag.attr('class', '');
|
||||||
firstConnection = false;
|
firstConnection = false;
|
||||||
title = Messages.lag + ' : ' + lag + ' ms\n';
|
title = Messages.lag + ' : ' + lag + ' ms\n';
|
||||||
if (lag > 30000) {
|
if (lag > 30000) {
|
||||||
@@ -382,6 +382,7 @@ define([
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (!firstConnection) {
|
else if (!firstConnection) {
|
||||||
|
$lag.attr('class', '');
|
||||||
// Display the red light at the 2nd failed attemp to get the lag
|
// Display the red light at the 2nd failed attemp to get the lag
|
||||||
lagLight.addClass('lag-red');
|
lagLight.addClass('lag-red');
|
||||||
title = Messages.redLight;
|
title = Messages.redLight;
|
||||||
|
|||||||
Reference in New Issue
Block a user