1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-16 21:05:30 +03:00

Some fixes.

This commit is contained in:
mikeller 2018-08-06 23:46:49 +12:00
parent b1541c92fc
commit da2206fb8a
2 changed files with 5 additions and 7 deletions

View file

@ -4,8 +4,6 @@ var analytics;
openNewWindowsInExternalBrowser();
// Asynchronous configuration to be done.
// When finish the startProcess() function must be called
$(document).ready(function () {
i18n.init(function() {
setupAnalytics();
@ -25,7 +23,7 @@ function setupAnalytics() {
chrome.storage.local.set({ 'userId': userId });
}
var optOut = !!result.analyticsOptOut
var optOut = !!result.analyticsOptOut;
var debugMode = process.versions['nw-flavor'] === 'sdk';