From: Mike Taylor Date: Thu, 15 May 2014 14:37:15 +0000 (+0100) Subject: Remove the old "node" member from the widget object. (This pointed to X-Git-Tag: 1.0.0~666^2~1 X-Git-Url: http://sru.miketaylor.org.uk/cgi-bin?a=commitdiff_plain;h=6d4f613fa84d001024680c89b051bfdf1fa28e27;p=mkws-moved-to-github.git Remove the old "node" member from the widget object. (This pointed to the DOM node, which we don't actually use any more. Instead we now use the "jqnode" membver, which points to the corresponding jQuery object.) --- diff --git a/src/mkws-widget.js b/src/mkws-widget.js index a3a4914..b506e62 100644 --- a/src/mkws-widget.js +++ b/src/mkws-widget.js @@ -9,7 +9,6 @@ function widget($, team, type, node) { var that = { team: team, type: type, - node: node, jqnode: $(node), config: mkws.objectInheritingFrom(team.config()) };