mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 16:28:38 +09:00
Exclude Update stuff from about:support if the updater isn't built.
This commit is contained in:
parent
ca32b7e4bf
commit
e268676945
3 changed files with 13 additions and 10 deletions
|
|
@ -968,31 +968,32 @@ function safeModeRestart() {
|
|||
* Set up event listeners for buttons.
|
||||
*/
|
||||
function setupEventListeners() {
|
||||
$("show-update-history-button").addEventListener("click", function (event) {
|
||||
#ifdef MOZ_UPDATER
|
||||
$("show-update-history-button").addEventListener("click", function(event) {
|
||||
var prompter = Cc["@mozilla.org/updates/update-prompt;1"].createInstance(Ci.nsIUpdatePrompt);
|
||||
prompter.showUpdateHistory(window);
|
||||
});
|
||||
$("reset-box-button").addEventListener("click", function (event) {
|
||||
#endif
|
||||
$("reset-box-button").addEventListener("click", function(event) {
|
||||
ResetProfile.openConfirmationDialog(window);
|
||||
});
|
||||
$("copy-raw-data-to-clipboard").addEventListener("click", function (event) {
|
||||
$("copy-raw-data-to-clipboard").addEventListener("click", function(event) {
|
||||
copyRawDataToClipboard(this);
|
||||
});
|
||||
$("copy-to-clipboard").addEventListener("click", function (event) {
|
||||
$("copy-to-clipboard").addEventListener("click", function(event) {
|
||||
copyContentsToClipboard();
|
||||
});
|
||||
$("profile-dir-button").addEventListener("click", function (event) {
|
||||
$("profile-dir-button").addEventListener("click", function(event) {
|
||||
openProfileDirectory();
|
||||
});
|
||||
$("restart-in-safe-mode-button").addEventListener("click", function (event) {
|
||||
$("restart-in-safe-mode-button").addEventListener("click", function(event) {
|
||||
if (Services.obs.enumerateObservers("restart-in-safe-mode").hasMoreElements()) {
|
||||
Services.obs.notifyObservers(null, "restart-in-safe-mode", "");
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
safeModeRestart();
|
||||
}
|
||||
});
|
||||
$("verify-place-integrity-button").addEventListener("click", function (event) {
|
||||
$("verify-place-integrity-button").addEventListener("click", function(event) {
|
||||
PlacesDBUtils.checkAndFixDatabase(function(aLog) {
|
||||
let msg = aLog.join("\n");
|
||||
$("verify-place-result").style.display = "block";
|
||||
|
|
|
|||
|
|
@ -99,6 +99,7 @@
|
|||
</tr>
|
||||
|
||||
#ifndef ANDROID
|
||||
#ifdef MOZ_UPDATER
|
||||
<tr class="no-copy">
|
||||
<th class="column">
|
||||
&aboutSupport.appBasicsUpdateHistory;
|
||||
|
|
@ -111,6 +112,7 @@
|
|||
</td>
|
||||
</tr>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef MOZ_UPDATER
|
||||
<tr>
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ var gUpdateHistory = {
|
|||
var element = document.createElementNS(NS_XUL, "update");
|
||||
this._view.appendChild(element);
|
||||
element.name = bundle.getFormattedString("updateFullName",
|
||||
[update.name, update.buildID]);
|
||||
[update.name, (update.buildID ? update.buildID : "-")]);
|
||||
element.type = bundle.getString("updateType_" + update.type);
|
||||
element.installDate = this._formatDate(update.installDate);
|
||||
if (update.detailsURL)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue