Changeset 9639

Show
Ignore:
Timestamp:
07/13/07 06:32:03 (18 months ago)
Author:
bill
Message:

Oops, declaration has to come earlier. Refs #3544.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • dijit/trunk/util/popup.js

    r9635 r9639  
    8484                dijit.util.widgetFocusTracer.entered(widget); 
    8585 
     86                var handlers = []; 
     87 
    8688                // provide default escape key handling  
    8789                handlers.push(dojo.connect(wrapper, "onkeypress", this, function(evt){ 
     
    9395                // watch for cancel/execute events on the popup and notify the caller 
    9496                // (for a menu, "execute" means clicking an item) 
    95                 var handlers = []; 
    9697                if(widget.onCancel){ 
    9798                        handlers.push(dojo.connect(widget, "onCancel", null, args.onCancel));