Skip to content

Commit

Permalink
quick JS fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wonderslug committed Jan 19, 2015
1 parent c5daa3e commit 9428c5c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions gui/static/js/main.js
Expand Up @@ -15,16 +15,14 @@ function captureSelected() {

/* Formatting function for row details - modify as you need */
function format(d) {
var foo = 1;

var platform_icon = 'fa-laptop';
var platform = d.platform.toLowerCase();
if (platform == 'linux') platform_icon = 'fa-linux';
else if (platform == 'windows') platform_icon = 'fa-windows';
else if (platform == 'darwin') platform_icon = 'fa-apple';

var test_suites = d.test_suites.join(', ');
var threads = d.threads.join(', ');
//var threads = d.threads.join(', ');

if(d.writeOptions) {
var safe_icon = 'fa-check';
Expand Down

0 comments on commit 9428c5c

Please sign in to comment.