Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Basic JavaScript build and compress tools; Linted app.js #57

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Wrap entire codebase in IIFE
rwaldron committed Oct 23, 2011
commit 67e0a82c24395d68779352864d0ffcecee5ff8fc
4 changes: 4 additions & 0 deletions public/js/app.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
(function( window, $ ) {

function login() {
var data = {
username: $("input[name=username]").val(),
@@ -157,3 +159,5 @@ $(document).ready(function() {
}
});
});

})( this, this.jQuery );