Fixed silly mistake of swtiching + and -

This commit is contained in:
Aktanusa
2014-06-21 19:05:25 -04:00
parent 448922dbda
commit 75c52362b9

View File

@@ -756,7 +756,7 @@ CM.Disp.AddMenuStats = function(title) {
span.style.color = 'black'; span.style.color = 'black';
span.style.fontSize = '13px'; span.style.fontSize = '13px';
span.style.verticalAlign = 'middle'; span.style.verticalAlign = 'middle';
span.textContent = CM.Config.StatsPref[config] ? '+' : '-'; span.textContent = CM.Config.StatsPref[config] ? '-' : '+';
span.onclick = function() {CM.ToggleStatsConfig(config); Game.UpdateMenu();}; span.onclick = function() {CM.ToggleStatsConfig(config); Game.UpdateMenu();};
div.appendChild(span); div.appendChild(span);
return div; return div;