blob: f7129c5539f438c6fb64bebb98edf55451b0860b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/**
* Mobile Client
*/
// Style
import './style.styl';
require('./tags');
import init from '../init';
/**
* init
*/
init((launch) => {
// http://qiita.com/junya/items/3ff380878f26ca447f85
document.body.setAttribute('ontouchstart', '');
// Start routing
//route(mios);
}, true);
|