Invert submitted() login in Sort and Perpage widgets.
[mkws-moved-to-github.git] / 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;
        });
     }