Index: Tools/GardeningServer/scripts/ui/failures.js |
diff --git a/Tools/GardeningServer/scripts/ui/failures.js b/Tools/GardeningServer/scripts/ui/failures.js |
index 0703a381215d73771cf9c12cd083851265b82d19..fbdb5a64274c8c504eeac1daf5f25fb98b0383e3 100644 |
--- a/Tools/GardeningServer/scripts/ui/failures.js |
+++ b/Tools/GardeningServer/scripts/ui/failures.js |
@@ -57,7 +57,7 @@ ui.failures.Builder = base.extends('a', { |
}, |
equals: function(configuration) |
{ |
- return this._configuration && this._configuration.is64bit == configuration.is64bit && this._configuration.version == configuration.version; |
+ return this._configuration && this._configuration.is64bit == configuration.is64bit && this._configuration.version == configuration.version; |
} |
}); |
@@ -78,9 +78,9 @@ ui.failures.FailureGrid = base.extends('table', { |
{ |
this.className = 'failures'; |
var titles = this.createTHead().insertRow(); |
- titles.insertCell().textContent = 'debug'; |
- titles.insertCell().textContent = 'release'; |
titles.insertCell().textContent = 'type'; |
+ titles.insertCell().textContent = 'release'; |
+ titles.insertCell().textContent = 'debug'; |
ojan
2014/06/15 00:43:44
This and the lines just below it are the only func
|
this._body = this.appendChild(document.createElement('tbody')); |
this._reset(); |
}, |
@@ -93,10 +93,10 @@ ui.failures.FailureGrid = base.extends('table', { |
row = this._resultRows[result] = this._body.insertRow(0); |
row.className = result; |
- row.insertCell(); |
- row.insertCell(); |
var titleCell = row.insertCell(); |
titleCell.appendChild(document.createElement('span')).textContent = result; |
+ row.insertCell(); |
+ row.insertCell(); |
return row; |
}, |
update: function(resultsByBuilder) |