Created
February 21, 2011 20:31
-
-
Save garrensmith/837661 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (document).ready(function() { | |
| $('#user_form').submit(function() { | |
| alert('hello'); | |
| return true; | |
| }); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| !!! 5 | |
| html | |
| head | |
| title= 'zombie error example' | |
| script(type='text/javascript', src='javascripts/jquery.min.js') | |
| | <!-- script(types='text/javascript'. src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js") --> | |
| script(type='text/javascript', src='javascripts/frontpage.js') | |
| body!= body | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| !!! 5 | |
| html | |
| head | |
| title= 'zombie error example' | |
| script(type='text/javascript', src='javascripts/jquery.min.js') | |
| | <!-- script(types='text/javascript'. src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js") --> | |
| script(type='text/javascript', src='javascripts/frontpage.js') | |
| body!= body | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Module dependencies. | |
| */ | |
| var express = require('express'); | |
| var app = module.exports = express.createServer(); | |
| // Configuration | |
| app.configure(function(){ | |
| app.set('views', __dirname + '/views'); | |
| app.set('view engine', 'jade'); | |
| app.use(express.bodyDecoder()); | |
| app.use(express.methodOverride()); | |
| app.use(app.router); | |
| app.use(express.staticProvider(__dirname + '/public')); | |
| }); | |
| app.configure('development', function(){ | |
| app.use(express.errorHandler({ dumpExceptions: true, showStack: true })); | |
| }); | |
| app.configure('production', function(){ | |
| app.use(express.errorHandler()); | |
| }); | |
| // Routes | |
| app.get('/', function(req, res){ | |
| res.render('index'); | |
| }); | |
| // Only listen on $ node app.js | |
| if (!module.parent) { | |
| app.listen(3000); | |
| console.log("Express server listening on port %d", app.address().port) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment