Skip to content

Instantly share code, notes, and snippets.

@joselo
Created August 19, 2011 23:48
Show Gist options
  • Save joselo/1158335 to your computer and use it in GitHub Desktop.
Save joselo/1158335 to your computer and use it in GitHub Desktop.
Write Javascripts as an object
var project;
$(function(){
var Project = function(){
var that = this;
var setupProject = function(){
};
that.someMethod = function(){
};
var project = setupProject();
};
project = new Project();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment