projects
/
mkws-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
efe0a1f
)
Remove the old "node" member from the widget object. (This pointed to
author
Mike Taylor
<mike@indexdata.com>
Thu, 15 May 2014 14:37:15 +0000
(15:37 +0100)
committer
Mike 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
patch
|
blob
|
history
diff --git
a/src/mkws-widget.js
b/src/mkws-widget.js
index
a3a4914
..
b506e62
100644
(file)
--- 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())
};