Skip to content

Instantly share code, notes, and snippets.

@rmurphey
Created November 7, 2012 13:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rmurphey/4031632 to your computer and use it in GitHub Desktop.
Save rmurphey/4031632 to your computer and use it in GitHub Desktop.
define([ 'jquery' ], function($) {
var MyPlugin = function(domNode) {
$(domNode).html('foo');
};
$.fn.myPlugin = function() {
new MyPlugin( this );
};
return MyPlugin;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment