1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-07-27 16:50:11 +02:00

eslint fixes

This commit is contained in:
Kushagra Gour
2018-06-22 20:19:19 +05:30
parent 2b8e773e03
commit 0eec8bec91
10 changed files with 156 additions and 97 deletions

View File

@@ -1,6 +1,4 @@
import {
log
} from "./utils";
import { log } from './utils';
/* global ga */
@@ -13,10 +11,10 @@ export function trackEvent(category, action, label, value) {
if (window.ga) {
ga('send', 'event', category, action, label, value);
}
};
}
// if online, load after sometime
if (false && navigator.onLine && !window.DEBUG) {
if (navigator.onLine && !window.DEBUG) {
/* eslint-disable */
// prettier-ignore