61 lines
2.2 KiB
JavaScript
61 lines
2.2 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
/* globals Mozilla */
|
|
|
|
"use strict";
|
|
|
|
document.getElementById("onboarding-overlay")
|
|
.addEventListener("click", evt => {
|
|
switch (evt.target.id) {
|
|
case "onboarding-tour-addons-button":
|
|
Mozilla.UITour.showHighlight("addons");
|
|
break;
|
|
case "onboarding-tour-customize-button":
|
|
Mozilla.UITour.showHighlight("customize");
|
|
break;
|
|
case "onboarding-tour-default-browser-button":
|
|
Mozilla.UITour.getConfiguration("appinfo", (config) => {
|
|
let isDefaultBrowser = config.defaultBrowser;
|
|
let btn = document.getElementById("onboarding-tour-default-browser-button");
|
|
let msg = document.getElementById("onboarding-tour-is-default-browser-msg");
|
|
if (isDefaultBrowser) {
|
|
btn.classList.add("onboarding-hidden");
|
|
msg.classList.remove("onboarding-hidden");
|
|
} else {
|
|
btn.disabled = true;
|
|
Mozilla.UITour.setConfiguration("defaultBrowser");
|
|
}
|
|
});
|
|
break;
|
|
case "onboarding-tour-library-button":
|
|
Mozilla.UITour.showHighlight("library");
|
|
break;
|
|
case "onboarding-tour-private-browsing-button":
|
|
Mozilla.UITour.showHighlight("privateWindow");
|
|
break;
|
|
case "onboarding-tour-search-button":
|
|
Mozilla.UITour.openSearchPanel(() => {});
|
|
break;
|
|
case "onboarding-tour-singlesearch-button":
|
|
Mozilla.UITour.showMenu("urlbar");
|
|
break;
|
|
case "onboarding-tour-sync-button":
|
|
let emailInput = document.getElementById("onboarding-tour-sync-email-input");
|
|
if (emailInput.checkValidity()) {
|
|
Mozilla.UITour.showFirefoxAccounts(null, emailInput.value);
|
|
}
|
|
break;
|
|
case "onboarding-overlay":
|
|
case "onboarding-overlay-close-btn":
|
|
// Dismiss any highlights if a user tries to close the dialog.
|
|
Mozilla.UITour.hideHighlight();
|
|
break;
|
|
}
|
|
// Dismiss any highlights if a user tries to change to other tours.
|
|
if (evt.target.classList.contains("onboarding-tour-item")) {
|
|
Mozilla.UITour.hideHighlight();
|
|
}
|
|
});
|