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