ブロッカーへの警告はログイン時のみ表示するように

This commit is contained in:
syuilo 2018-09-24 08:00:10 +09:00
parent cba0dd5e17
commit d93f76c1af
No known key found for this signature in database
GPG Key ID: BDC4C49D06AB9D69
2 changed files with 8 additions and 6 deletions

View File

@ -1,8 +1,8 @@
require('fuckadblock');
declare const fuckAdBlock: any; declare const fuckAdBlock: any;
export default (os) => { export default (os) => {
require('fuckadblock');
function adBlockDetected() { function adBlockDetected() {
os.apis.dialog({ os.apis.dialog({
title: '%fa:exclamation-triangle%%i18n:common.adblock.detected%', title: '%fa:exclamation-triangle%%i18n:common.adblock.detected%',

View File

@ -87,10 +87,12 @@ init(async (launch) => {
updateBanner: updateBanner(os) updateBanner: updateBanner(os)
})); }));
/** if (os.store.getters.isSignedIn) {
* Fuck AD Block /**
*/ * Fuck AD Block
fuckAdBlock(os); */
fuckAdBlock(os);
}
/** /**
* Init Notification * Init Notification