From 7c26e60707fc1967f1008f25f91d3f720cf8df2f Mon Sep 17 00:00:00 2001 From: Nils Schneider Date: Sat, 21 Mar 2015 20:49:39 +0100 Subject: [PATCH] swap distance/tq in list --- history.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/history.js b/history.js index 588ca02..18bbece 100644 --- a/history.js +++ b/history.js @@ -300,11 +300,11 @@ function addToLongLinksList(el, gotoProxy, links) { row.appendChild(td1) var td2 = document.createElement("td") - td2.textContent = showDistance(d) + td2.textContent = showTq(d) row.appendChild(td2) var td3 = document.createElement("td") - td3.textContent = showTq(d) + td3.textContent = showDistance(d) row.appendChild(td3) el.appendChild(row)