Changeset 9639
- Timestamp:
- 07/13/07 06:32:03 (18 months ago)
- Files:
-
- 1 modified
-
dijit/trunk/util/popup.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dijit/trunk/util/popup.js
r9635 r9639 84 84 dijit.util.widgetFocusTracer.entered(widget); 85 85 86 var handlers = []; 87 86 88 // provide default escape key handling 87 89 handlers.push(dojo.connect(wrapper, "onkeypress", this, function(evt){ … … 93 95 // watch for cancel/execute events on the popup and notify the caller 94 96 // (for a menu, "execute" means clicking an item) 95 var handlers = [];96 97 if(widget.onCancel){ 97 98 handlers.push(dojo.connect(widget, "onCancel", null, args.onCancel));