Ignore:
Timestamp:
09/03/12 14:05:37 (13 years ago)
Author:
hendrikvanantwerpen
Message:

Guarded widget startup() functions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Dev/branches/rest-dojo-ui/client/rft/ui/Selector.js

    r396 r405  
    4646
    4747            startup: function() {
     48                if ( this._started ){ return; }
     49                                this.inherited(arguments);
    4850                domClass.add(this.selectedColorNode, "pending");
    4951
     
    152154                        action = this.itemActions[actionName];
    153155                        actions[actionName] = {
    154                             callback: function(){action.callback && action.callback(item);},
     156                            callback: function(){
     157                                action.callback && action.callback(item);
     158                            },
    155159                            properties: {
    156160                                blockButton: false,
Note: See TracChangeset for help on using the changeset viewer.