From: Mike Taylor Date: Thu, 15 May 2014 14:29:18 +0000 (+0100) Subject: Moving MOTD is now done using jqnode rather than underlying DOM node. X-Git-Tag: 1.0.0~666^2~2 X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=commitdiff_plain;h=efe0a1f905f6ebb38ffcfcb478f1b9b8707b558c Moving MOTD is now done using jqnode rather than underlying DOM node. ... which I *think* means we no longer need the "node" member. --- diff --git a/src/mkws-widget-main.js b/src/mkws-widget-main.js index 55d628d..8cfad61 100644 --- a/src/mkws-widget-main.js +++ b/src/mkws-widget-main.js @@ -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); } });