Skip to content

Instantly share code, notes, and snippets.

@jccrosby
Created August 4, 2012 16:50
Show Gist options
  • Save jccrosby/3258750 to your computer and use it in GitHub Desktop.
Save jccrosby/3258750 to your computer and use it in GitHub Desktop.
Example of a class-style javascript object (using jquery extend())
(function(ns){
var Application = function Application(options) {
this.initialize(options);
}
$.extend(Application.prototype, {
initialize: function(options) {
console.log('Application::initialize()', options);
}
})
ns.Application = Application;
}(lib||(lib={})));
var lib;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment