Created
February 23, 2010 01:00
-
-
Save ibolmo/311724 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(){ | |
Class.Mutators.jQuery = function(name){ | |
var self = this; | |
jQuery.fn[name] = function(arg){ | |
var args = Array.prototype.slice.call(arguments, 1); | |
if ($type(arg) == 'string'){ | |
var instance = $(this).data(name); | |
if (instance) instance[arg](args); // ???? | |
} else { | |
$(this).data(name, new self(this.selector, jQuery.extend(self.prototype.options, arg))); | |
} | |
}; | |
}; | |
})(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Person = new Class({ | |
Implements: Options, | |
options: { | |
height: 'tall', | |
weight: 'fat' | |
}, | |
jQuery: 'Person', // must be after options definition | |
initialize: function(selector, options){ | |
this.setOptions(options); | |
this.jqueryObject = jQuery(selector); | |
}, | |
dance: function(whichDance){ | |
// dance the whichDance | |
}, | |
combust: function(){ | |
// combust | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// instantiate the class | |
var instance = new Person('#dude',{ height: 'short' }); | |
jQuery('#dude').Person({ height: 'short' }); | |
// call methods | |
instance.dance('salsa'); | |
jQuery('#dude').Person('dance','salsa'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment