Sharkey/src/web/app/mobile/script.js

22 lines
304 B
JavaScript
Raw Normal View History

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
require('./tags');
2017-03-18 13:05:11 +02:00
import boot from '../boot';
import route from './router';
2016-12-29 00:49:51 +02:00
/**
* Boot
*/
boot(me => {
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
route(me);
});