Skip to content

Commit

Permalink
Bug 1159407 - JavaScript error at aboutServiceWorkers.js when updatin…
Browse files Browse the repository at this point in the history
…g the service worker via about:serviceworkers page. r=baku
  • Loading branch information
jaoo committed Apr 29, 2015
1 parent 7b4c79a commit 50a7875
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion toolkit/content/aboutServiceWorkers.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ function display(info) {
let updateButton = document.createElement("button");
updateButton.appendChild(document.createTextNode(bundle.GetStringFromName('update')));
updateButton.onclick = function() {
gSWM.update(info.scope);
gSWM.softUpdate(info.scope);
};
div.appendChild(updateButton);

Expand Down

0 comments on commit 50a7875

Please sign in to comment.