Split index.html in many files smaller. New right column when the wallet is ready. Removed templates selector.
This commit is contained in:
parent
6bad4ae59d
commit
0a027360a8
28 changed files with 1394 additions and 1749 deletions
5
app.js
5
app.js
|
|
@ -2,6 +2,11 @@ var express = require('express');
|
|||
var http = require('http');
|
||||
var app = express();
|
||||
|
||||
app.use('/', express.static(__dirname + '/'));
|
||||
app.get('*', function(req, res) {
|
||||
return res.sendfile('index.html');
|
||||
});
|
||||
|
||||
app.start = function(port, callback) {
|
||||
|
||||
app.set('port', port);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue