Remove the old "node" member from the widget object. (This pointed to
authorMike Taylor <mike@indexdata.com>
Thu, 15 May 2014 14:37:15 +0000 (15:37 +0100)
committerMike Taylor <mike@indexdata.com>
Thu, 15 May 2014 14:37:15 +0000 (15:37 +0100)
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.)

src/mkws-widget.js

index a3a4914..b506e62 100644 (file)
@@ -9,7 +9,6 @@ function widget($, team, type, node) {
   var that = {
     team: team,
     type: type,
-    node: node,
     jqnode: $(node),
     config: mkws.objectInheritingFrom(team.config())
   };