2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* Desktop Client
|
|
|
|
*/
|
|
|
|
|
2017-02-19 04:31:23 +01:00
|
|
|
// Style
|
2017-02-19 07:36:53 +01:00
|
|
|
import './style.styl';
|
2017-02-19 04:31:23 +01:00
|
|
|
|
2017-02-02 21:22:12 +01:00
|
|
|
require('./tags');
|
2017-03-18 12:05:11 +01:00
|
|
|
require('./mixins');
|
|
|
|
import * as riot from 'riot';
|
2017-05-17 22:06:55 +02:00
|
|
|
import init from '../init';
|
2017-03-18 12:05:11 +01:00
|
|
|
import route from './router';
|
|
|
|
import fuckAdBlock from './scripts/fuck-ad-block';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
/**
|
2017-05-17 22:06:55 +02:00
|
|
|
* init
|
2016-12-28 23:49:51 +01:00
|
|
|
*/
|
2017-05-17 22:06:55 +02:00
|
|
|
init(me => {
|
2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* Fuck AD Block
|
|
|
|
*/
|
|
|
|
fuckAdBlock();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Init Notification
|
|
|
|
*/
|
|
|
|
if ('Notification' in window) {
|
|
|
|
// 許可を得ていなかったらリクエスト
|
|
|
|
if (Notification.permission == 'default') {
|
|
|
|
Notification.requestPermission();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start routing
|
|
|
|
route(me);
|
|
|
|
});
|