summaryrefslogtreecommitdiff
path: root/src/web/app/mobile/script.ts
blob: f2d617f3a2f11c6ea5765bf7047e4b13966ea7be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
 * Mobile Client
 */

// Style
import './style.styl';

require('./tags');
import init from '../init';

/**
 * init
 */
init((launch) => {
	// Register directives
	require('./views/directives');

	// http://qiita.com/junya/items/3ff380878f26ca447f85
	document.body.setAttribute('ontouchstart', '');

	// Start routing
	//route(mios);
}, true);