From 5710282758daaa01312c510231168058e587b63d Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Fri, 21 Mar 2014 17:07:28 +0000 Subject: [PATCH] Simplify Sort and Perpage widget to use anonymous closures. Disposes of the onSortChange and onPerpageChange functions. --- tools/htdocs/mkws.js | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index 193a663..057b8ff 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -402,30 +402,24 @@ function widget($, team, type, node) { // It seems this and the Perpage widget doen't need to // subscribe to anything, since they produce events rather // than consuming them. - $(node).change(onSortChange); - - function onSortChange() - { + $(node).change(function () { team.set_sortOrder($(node).val()); if (!team.submitted()) return false; team.resetPage(); team.reShow(); return false; - } + }); } function promotePerpage() { - $(node).change(onPerpageChange); - - function onPerpageChange() - { + $(node).change(function() { team.set_perpage($(node).val()); if (!team.submitted()) return false; team.resetPage(); team.reShow(); return false; - } + }); } } -- 1.7.10.4