From c5c7c61750ae3f164f8ee04c009b01283fbda269 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Fri, 21 Mar 2014 17:08:40 +0000 Subject: [PATCH] Invert submitted() login in Sort and Perpage widgets. Just to simplify the code. --- tools/htdocs/mkws.js | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index 057b8ff..e15f9ea 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -404,9 +404,10 @@ function widget($, team, type, node) { // than consuming them. $(node).change(function () { team.set_sortOrder($(node).val()); - if (!team.submitted()) return false; - team.resetPage(); - team.reShow(); + if (team.submitted()) { + team.resetPage(); + team.reShow(); + } return false; }); } @@ -415,9 +416,10 @@ function widget($, team, type, node) { function promotePerpage() { $(node).change(function() { team.set_perpage($(node).val()); - if (!team.submitted()) return false; - team.resetPage(); - team.reShow(); + if (team.submitted()) { + team.resetPage(); + team.reShow(); + } return false; }); } -- 1.7.10.4