mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 562306: Changing state of "Update Automatically" for an add-on doesn't update database entry. r=dtownsend
This commit is contained in:
parent
274ad77059
commit
561980b8b3
@ -1002,6 +1002,12 @@ var gDetailView = {
|
|||||||
|
|
||||||
this._notificationContainer = document.getElementById("detail-notification");
|
this._notificationContainer = document.getElementById("detail-notification");
|
||||||
this._notificationText = document.getElementById("detail-notification-text");
|
this._notificationText = document.getElementById("detail-notification-text");
|
||||||
|
|
||||||
|
var self = this;
|
||||||
|
var autoUpdate = document.getElementById("detail-autoUpdate");
|
||||||
|
autoUpdate.addEventListener("command", function() {
|
||||||
|
self._addon.applyBackgroundUpdates = autoUpdate.checked;
|
||||||
|
}, true);
|
||||||
},
|
},
|
||||||
|
|
||||||
show: function(aAddonId) {
|
show: function(aAddonId) {
|
||||||
|
Loading…
Reference in New Issue
Block a user