2016-12-29 00:49:51 +02:00
|
|
|
/**
|
|
|
|
* Mobile Client
|
|
|
|
*/
|
|
|
|
|
2017-02-19 05:31:23 +02:00
|
|
|
// Style
|
2017-02-19 08:36:53 +02:00
|
|
|
import './style.styl';
|
2017-02-19 05:31:23 +02:00
|
|
|
|
2017-02-02 22:22:12 +02:00
|
|
|
require('./tags');
|
2017-05-17 23:06:55 +03:00
|
|
|
import init from '../init';
|
2017-03-18 13:05:11 +02:00
|
|
|
import route from './router';
|
2017-11-15 20:06:52 +02:00
|
|
|
import MiOS from '../common/mios';
|
2016-12-29 00:49:51 +02:00
|
|
|
|
|
|
|
/**
|
2017-05-17 23:06:55 +03:00
|
|
|
* init
|
2016-12-29 00:49:51 +02:00
|
|
|
*/
|
2017-11-15 20:06:52 +02:00
|
|
|
init((mios: MiOS) => {
|
2017-02-17 07:03:17 +02:00
|
|
|
// http://qiita.com/junya/items/3ff380878f26ca447f85
|
|
|
|
document.body.setAttribute('ontouchstart', '');
|
|
|
|
|
2016-12-29 00:49:51 +02:00
|
|
|
// Start routing
|
2017-11-15 20:06:52 +02:00
|
|
|
route(mios);
|
2017-11-21 03:01:00 +02:00
|
|
|
}, true);
|