2016-12-28 22:49:51 +00:00
|
|
|
/**
|
|
|
|
* Mobile Client
|
|
|
|
*/
|
|
|
|
|
2017-02-19 03:31:23 +00:00
|
|
|
// Style
|
2017-02-19 06:36:53 +00:00
|
|
|
import './style.styl';
|
2017-02-19 03:31:23 +00:00
|
|
|
|
2017-02-02 20:22:12 +00:00
|
|
|
require('./tags');
|
2017-03-18 11:05:11 +00:00
|
|
|
import boot from '../boot';
|
|
|
|
import route from './router';
|
2016-12-28 22:49:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Boot
|
|
|
|
*/
|
|
|
|
boot(me => {
|
2017-02-17 05:03:17 +00:00
|
|
|
// http://qiita.com/junya/items/3ff380878f26ca447f85
|
|
|
|
document.body.setAttribute('ontouchstart', '');
|
|
|
|
|
2016-12-28 22:49:51 +00:00
|
|
|
// Start routing
|
|
|
|
route(me);
|
|
|
|
});
|