Move comment.
[mkws-moved-to-github.git] / src / mkws-widgets.js
index 2154f5a..4173301 100644 (file)
@@ -28,8 +28,9 @@ function widget($, team, type, node) {
 
 
 // Functions follow for promoting the regular widget object into
-// widgets of specific types. These could be moved outside of the
-// widget object, or even into their own source files.
+// widgets of specific types. These could be moved into their own
+// source files.
+
 
 function promoteToTargets() {
     var that = this;
@@ -57,6 +58,7 @@ function promoteToTargets() {
        subnode.html(table);
     });
 }
+mkws.registerWidgetType('Targets', promoteToTargets);
 
 
 function promoteToStat() {
@@ -73,6 +75,7 @@ function promoteToStat() {
            '<span class="records">' + M('Retrieved records') + ': ' + data.records + '/' + data.hits + '</span>');
     });
 }
+mkws.registerWidgetType('Stat', promoteToStat);
 
 
 function promoteToTermlists() {
@@ -138,6 +141,7 @@ function promoteToTermlists() {
        }
     });
 }
+mkws.registerWidgetType('Termlists', promoteToTermlists);
 
 
 function promoteToPager() {
@@ -202,6 +206,7 @@ function promoteToPager() {
        }
     });
 }                           
+mkws.registerWidgetType('Pager', promoteToPager);
 
 
 function promoteToRecords() {
@@ -233,6 +238,7 @@ function promoteToRecords() {
        }
     });
 }
+mkws.registerWidgetType('Records', promoteToRecords);
 
 
 function promoteToNavi() {
@@ -262,12 +268,13 @@ function promoteToNavi() {
        $(that.node).html(text);
     });
 }
+mkws.registerWidgetType('Navi', promoteToNavi);
 
 
+// It seems this and the Perpage widget doen't need to subscribe to
+// anything, since they produce events rather than consuming them.
+//
 function promoteToSort() {
-    // It seems this and the Perpage widget doen't need to
-    // subscribe to anything, since they produce events rather
-    // than consuming them.
     $(this.node).change(function () {
        this.team.set_sortOrder($(node).val());
        if (this.team.submitted()) {
@@ -277,6 +284,7 @@ function promoteToSort() {
        return false;
     });
 }
+mkws.registerWidgetType('Sort', promoteToSort);
 
 
 function promoteToPerpage() {
@@ -289,14 +297,4 @@ function promoteToPerpage() {
        return false;
     });
 }
-
-mkws.registerWidgetType('Targets', promoteToTargets);
-mkws.registerWidgetType('Stat', promoteToStat);
-mkws.registerWidgetType('Termlists', promoteToTermlists);
-mkws.registerWidgetType('Pager', promoteToPager);
-mkws.registerWidgetType('Records', promoteToRecords);
-mkws.registerWidgetType('Navi', promoteToNavi);
-mkws.registerWidgetType('Sort', promoteToSort);
 mkws.registerWidgetType('Perpage', promoteToPerpage);
-
-