Bug Tracker

Changeset 5496

Show
Ignore:
Timestamp:
05/07/08 21:09:45 (8 months ago)
Author:
scott.gonzalez
Message:

$.widget: Fixed enable/disable methods.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/ui/ui.core.js

    r5493 r5496  
    100100         
    101101        enable: function() { 
    102             this.setData(null, 'disabled', false); 
     102            this.setData('disabled', false); 
    103103        }, 
    104104        disable: function() { 
    105             this.setData(null, 'disabled', true); 
     105            this.setData('disabled', true); 
    106106        } 
    107107    };