Changeset 5493
- Timestamp:
- 05/07/08 16:25:12 (7 months ago)
- Files:
-
- 1 modified
-
trunk/ui/ui.core.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ui/ui.core.js
r5484 r5493 88 88 var widgetPrototype = { 89 89 init: function() {}, 90 destroy: function() {}, 90 destroy: function() { 91 this.element.removeData(this.widgetName); 92 }, 91 93 92 94 getData: function(key) { … … 131 133 $[namespace][name] = function(element, options) { 132 134 var self = this; 135 136 this.widgetName = name; 133 137 134 138 this.options = $.extend({}, $[namespace][name].defaults, options);
