blob: 53f4d9f5244c83e47a2e28bed1332e5ae1ec2f98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/**
* Mobile Client
*/
// Style
import './style.styl';
require('./tags');
const boot = require('../boot');
const mixins = require('./mixins');
const route = require('./router');
/**
* Boot
*/
boot(me => {
// http://qiita.com/junya/items/3ff380878f26ca447f85
document.body.setAttribute('ontouchstart', '');
// Register mixins
mixins(me);
// Start routing
route(me);
});
|