Changeset 494 for Dev/trunk/src/client/qed-client/widgets/ListWidget.js
- Timestamp:
- 03/09/14 22:03:19 (11 years ago)
- Location:
- Dev/trunk/src/client/qed-client
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/src/client/qed-client
- Property svn:ignore
-
old new 1 1 2 ### begin grunt-svn-ignore managed ignores3 ### edits will be overwritten when grunt svn-ignore is run4 session.js5 ### end grunt-svn-ignore managed ignores
-
- Property svn:ignore
-
Dev/trunk/src/client/qed-client/widgets/ListWidget.js
r490 r494 50 50 }); 51 51 this.source = new this.container(this.domNode,sourceParams); 52 this. source.on('Drop',lang.hitch(this,'_handleChange'));52 this.own(this.source.on('Drop',lang.hitch(this,'_handleChange'))); 53 53 }, 54 54 creator: function(item, hint) { … … 68 68 } 69 69 } 70 on(nodeOrWidget,'change',lang.hitch(this,'_handleChange'));70 this.own(on(nodeOrWidget,'change',lang.hitch(this,'_handleChange'))); 71 71 var node = nodeOrWidget.domNode ? nodeOrWidget.domNode : nodeOrWidget; 72 72 if ( hint !== "avatar" && node.id !== id ) {
Note: See TracChangeset
for help on using the changeset viewer.