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

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

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

/**
 * init
 */
init(me => {
	// http://qiita.com/junya/items/3ff380878f26ca447f85
	document.body.setAttribute('ontouchstart', '');

	// Start routing
	route(me);
});