]> source.dussan.org Git - jquery-ui.git/commitdiff
Core: Updated widget factory to use proper names for internal methods. Part of ...
authorScott González <scott.gonzalez@gmail.com>
Sat, 16 Aug 2008 13:59:31 +0000 (13:59 +0000)
committerScott González <scott.gonzalez@gmail.com>
Sat, 16 Aug 2008 13:59:31 +0000 (13:59 +0000)
ui/ui.core.js

index b101ee524edbaa0d91ab4978035ece49c5b84e64..49828f9bf9124e7b4d611371e33ebc2c064bc131 100644 (file)
@@ -77,16 +77,16 @@ $.widget = function(name, prototype) {
                
                this.element = $(element)
                        .bind('setData.' + name, function(e, key, value) {
-                               return self.setData(key, value);
+                               return self._setData(key, value);
                        })
                        .bind('getData.' + name, function(e, key) {
-                               return self.getData(key);
+                               return self._getData(key);
                        })
                        .bind('remove', function() {
                                return self.destroy();
                        });
                
-               this.init();
+               this._init();
        };
        
        // add widget prototype
@@ -94,15 +94,15 @@ $.widget = function(name, prototype) {
 };
 
 $.widget.prototype = {
-       init: function() {},
+       _init: function() {},
        destroy: function() {
                this.element.removeData(this.widgetName);
        },
        
-       getData: function(key) {
+       _getData: function(key) {
                return this.options[key];
        },
-       setData: function(key, value) {
+       _setData: function(key, value) {
                this.options[key] = value;
                
                if (key == 'disabled') {
@@ -112,13 +112,13 @@ $.widget.prototype = {
        },
        
        enable: function() {
-               this.setData('disabled', false);
+               this._setData('disabled', false);
        },
        disable: function() {
-               this.setData('disabled', true);
+               this._setData('disabled', true);
        },
        
-       trigger: function(type, e, data) {
+       _trigger: function(type, e, data) {
                var eventName = (type == this.widgetEventPrefix
                        ? type : this.widgetEventPrefix + type);
                e = e  || $.event.fix({ type: eventName, target: this.element[0] });