Skip to content

Instantly share code, notes, and snippets.

@nicholasstephan
Created March 18, 2012 21:03
Show Gist options
  • Save nicholasstephan/2081290 to your computer and use it in GitHub Desktop.
Save nicholasstephan/2081290 to your computer and use it in GitHub Desktop.
JS: jQuery Widget
;(function($) {
$.widget('ui.', {
_create: function() {
},
_init: function() {
},
destroy: function() {
$.Widget.prototype.destroy.call( this );
}
});
}(jQuery));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment