~ubuntu-branches/ubuntu/saucy/whoopsie-daisy/saucy

« back to all changes in this revision

Viewing changes to backend/stats/static/js/yui/tests/app/tests/manual/controller.js

  • Committer: Package Import Robot
  • Author(s): Evan Dandrea
  • Date: 2012-04-18 13:04:36 UTC
  • Revision ID: package-import@ubuntu.com-20120418130436-vmt93p8fds516lws
Tags: 0.1.32
Fix failing tests on powerpc and ARM.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
var express = require('express'),
 
2
    app     = express.createServer();
 
3
 
 
4
app.configure(function(){
 
5
    app.use(express.static(__dirname));
 
6
});
 
7
 
 
8
app.get('*', function(req, res){
 
9
    res.sendfile('controller.html');
 
10
});
 
11
 
 
12
app.listen(4000);
 
 
b'\\ No newline at end of file'