From 3d286613edfe1429164e1931b103b9f3cc3d02d5 Mon Sep 17 00:00:00 2001 From: Kevin Darbyshire-Bryant Date: Fri, 19 Apr 2013 09:38:40 +0100 Subject: [PATCH] Small tidy of tomato.js --- release/src/router/www/tomato.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release/src/router/www/tomato.js b/release/src/router/www/tomato.js index 7c2991c9f8..7b6080feab 100644 --- a/release/src/router/www/tomato.js +++ b/release/src/router/www/tomato.js @@ -2247,12 +2247,12 @@ function ellipsis(s, max) { function MIN(a, b) { - return a < b ? a : b; + return (a < b) ? a : b; } function MAX(a, b) { - return a > b ? a : b; + return (a > b) ? a : b; } function fixInt(n, min, max, def) -- 2.11.4.GIT