blob: 1defd219784abcca00db5bbcea8087537280d76a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
/* 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/. */
var servicesDiv = document.getElementById("webservices-container");
servicesDiv.style.display = "none";
function showServices() {
servicesDiv.style.display = "";
}
// Fluent replaces the children of the element being overlayed which prevents us
// from putting an event handler directly on the children.
let rightsIntro =
document.querySelector("[data-l10n-id=rights-intro-point-5]") ||
document.querySelector("[data-l10n-id=rights-intro-point-5-unbranded]");
rightsIntro.addEventListener("click", event => {
if (event.target.id == "showWebServices") {
showServices();
}
});
var disablingServicesDiv = document.getElementById(
"disabling-webservices-container"
);
function showDisablingServices() {
disablingServicesDiv.style.display = "";
}
if (disablingServicesDiv != null) {
disablingServicesDiv.style.display = "none";
// Same issue here with Fluent replacing the children affecting the event listeners.
let rightsWebServices = document.querySelector(
"[data-l10n-id=rights-webservices]"
);
rightsWebServices.addEventListener("click", event => {
if (event.target.id == "showDisablingWebServices") {
showDisablingServices();
}
});
}
|