Swap rank and position

This commit is contained in:
Jan Philipp Timme 2017-12-30 13:07:30 +01:00
parent e93c083f2f
commit a45f0e9515
1 changed files with 3 additions and 3 deletions

View File

@ -201,8 +201,8 @@ function renderDriverInfoBox(race) {
content += "<table id=\"driver-table\" class=\"table table-striped table-bordered\">"; content += "<table id=\"driver-table\" class=\"table table-striped table-bordered\">";
content += "<thead>"; content += "<thead>";
content += "<tr>"; content += "<tr>";
content += "<th scope=\"col\">Rank</th>";
content += "<th scope=\"col\">Position</th>"; content += "<th scope=\"col\">Position</th>";
content += "<th scope=\"col\">Rank</th>";
content += "<th scope=\"col\">Code</th>"; content += "<th scope=\"col\">Code</th>";
content += "<th scope=\"col\">Points</th>"; content += "<th scope=\"col\">Points</th>";
content += "<th scope=\"col\">Fastest Lap Speed</th>"; content += "<th scope=\"col\">Fastest Lap Speed</th>";
@ -229,8 +229,8 @@ function renderDriverInfoBox(race) {
if(isNaN(driver.fastestLapSpeed)) driver.fastestLapSpeed = 0; if(isNaN(driver.fastestLapSpeed)) driver.fastestLapSpeed = 0;
//console.log(driver); //console.log(driver);
content += "<tr>"; content += "<tr>";
content += "<th scope=\"row\" data-sort=\""+driver.sortableRank+"\">"+driver.rank+"</th>"; content += "<th scope=\"row\" data-sort=\""+driver.sortablePosition+"\">"+driver.position+"</th>";
content += "<td data-sort=\""+driver.sortablePosition+"\">"+driver.position+"</td>"; content += "<td data-sort=\""+driver.sortableRank+"\">"+driver.rank+"</td>";
content += "<td>"+driver.code+"</td>"; content += "<td>"+driver.code+"</td>";
content += "<td>"+driver.points+"</td>"; content += "<td>"+driver.points+"</td>";
content += "<td>"+driver.fastestLapSpeed+"</td>"; content += "<td>"+driver.fastestLapSpeed+"</td>";