From c3942fb0b345fb1471a157e59dcdb230eb2d37ae Mon Sep 17 00:00:00 2001 From: "Vladimir Golovnev (Glassez)" Date: Mon, 27 Jan 2014 08:44:36 +0400 Subject: [PATCH] Fix WebUI sort by ratio for some locales (with comma as decimal point). --- src/webui/scripts/dynamicTable.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/webui/scripts/dynamicTable.js b/src/webui/scripts/dynamicTable.js index 8fa51130a..2b906b759 100644 --- a/src/webui/scripts/dynamicTable.js +++ b/src/webui/scripts/dynamicTable.js @@ -112,9 +112,11 @@ var dynamicTable = new Class ({ return (tr2.getElements('td')[i].get('html').split(' ')[0].toInt() - tr1.getElements('td')[i].get('html').split(' ')[0].toInt()); default: // Ratio var ratio1 = tr1.getElements('td')[i].get('html'); + ratio1 = ratio1.replace(",", "."); // toFloat() cannot parse comma as decimal point if(ratio1 == '∞') ratio1 = '101.0'; var ratio2 = tr2.getElements('td')[i].get('html'); + ratio2 = ratio2.replace(",", "."); // toFloat() cannot parse comma as decimal point if(ratio2 == '∞') ratio2 = '101.0'; if(!reverseSort)