mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-25 02:09:05 +01:00
ac225d4ea6
Closes #12, #227 and #58
22 lines
304 B
JavaScript
22 lines
304 B
JavaScript
/**
|
|
* Mobile Client
|
|
*/
|
|
|
|
// Style
|
|
import './style.styl';
|
|
|
|
require('./tags');
|
|
import boot from '../boot';
|
|
import route from './router';
|
|
|
|
/**
|
|
* Boot
|
|
*/
|
|
boot(me => {
|
|
// http://qiita.com/junya/items/3ff380878f26ca447f85
|
|
document.body.setAttribute('ontouchstart', '');
|
|
|
|
// Start routing
|
|
route(me);
|
|
});
|