Invert submitted() login in Sort and Perpage widgets.
authorMike Taylor <mike@indexdata.com>
Fri, 21 Mar 2014 17:08:40 +0000 (17:08 +0000)
committerMike Taylor <mike@indexdata.com>
Fri, 21 Mar 2014 17:08:40 +0000 (17:08 +0000)
Just to simplify the code.

tools/htdocs/mkws.js

index 057b8ff..e15f9ea 100644 (file)
@@ -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;
        });
     }