yumechi-no-kuni/src/web/app/mobile/script.js

22 lines
304 B
JavaScript
Raw Normal View History

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