From 47aa05b9bc8a77ed139ad85bd02bb1432241e43e Mon Sep 17 00:00:00 2001 From: rolux Date: Fri, 26 Apr 2013 12:28:26 +0200 Subject: [PATCH] typo --- source/Ox.UI/js/List/Chart.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Ox.UI/js/List/Chart.js b/source/Ox.UI/js/List/Chart.js index be1f6717..25f6a352 100644 --- a/source/Ox.UI/js/List/Chart.js +++ b/source/Ox.UI/js/List/Chart.js @@ -95,7 +95,7 @@ Ox.Chart = function(options, self) { var value = self.options.data[key], sort = self.options.sort.operator == '+' ? (self.subData ? self.totals[key] : value) - ? (self.subData ? self.max - self.totals[key] : self.max - value); + : (self.subData ? self.max - self.totals[key] : self.max - value); if (self.options.sort.key == 'value') { sort = Ox.pad(value, 64) + sort; }