Moving MOTD is now done using jqnode rather than underlying DOM node.
authorMike Taylor <mike@indexdata.com>
Thu, 15 May 2014 14:29:18 +0000 (15:29 +0100)
committerMike Taylor <mike@indexdata.com>
Thu, 15 May 2014 14:29:18 +0000 (15:29 +0100)
... which I *think* means we no longer need the "node" member.

src/mkws-widget-main.js

index 55d628d..8cfad61 100644 (file)
@@ -400,7 +400,7 @@ mkws.registerWidgetType('MOTD', function() {
   var container = this.team.widget('MOTDContainer');
   if (container) {
     // Move the MOTD from the provided element down into the container
-    this.jqnode.appendTo(container.node); // #### can this be container.jqnode
+    this.jqnode.appendTo(container.jqnode);
   }
 });