Commit bde94ec16b8af91da0d44e2d4bd6ce54d9c23e65
Load base css before theme css
Charles Lehner committed on 8/14/2016, 3:17:27 AMParent: 079f7646fd62a11c7e71deabb533b888890f1093
Files changed
index.js | changed |
index.js | ||
---|---|---|
@@ -17,17 +17,17 @@ | ||
17 | 17 | var modules = require('./modules') |
18 | 18 | |
19 | 19 | var u = require('./util') |
20 | 20 | |
21 | +document.head.appendChild(h('style', require('./style.css.json'))) | |
22 | + | |
21 | 23 | modules['sbot-api.js'] = SbotApi() |
22 | 24 | combine(modules) |
23 | 25 | |
24 | 26 | if(process.title === 'node') { |
25 | 27 | console.log(require('depject/graph')(modules)) |
26 | 28 | process.exit(0) |
27 | 29 | } |
28 | 30 | |
29 | -document.head.appendChild(h('style', require('./style.css.json'))) | |
30 | - | |
31 | 31 | document.body.appendChild(modules['app.js'].app()) |
32 | 32 | |
33 | 33 |
Built with git-ssb-web