Skip to content

Instantly share code, notes, and snippets.

@mwarkentin
Created January 15, 2010 20:01
Show Gist options
  • Save mwarkentin/278369 to your computer and use it in GitHub Desktop.
Save mwarkentin/278369 to your computer and use it in GitHub Desktop.
A simple template for new Mootools classes from David Walsh.
var yourClass = new Class({
Implements: [Options],
options: {
yourOption: ''
},
initialize: function(options) {
this.setOptions(options);
},
yourMethod: function() {
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment