mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-10 05:47:04 +00:00
Bug 1352481 - Fix a few eslint errors related to unnecessary semicolon usage and incorrect quotes (should have used double quotes for string). r=me
This commit is contained in:
parent
6b78ec4800
commit
72128b8243
@ -148,14 +148,14 @@ var gPrivacyPane = {
|
||||
function setEventListener(aId, aEventType, aCallback) {
|
||||
document.getElementById(aId)
|
||||
.addEventListener(aEventType, aCallback.bind(gPrivacyPane));
|
||||
};
|
||||
}
|
||||
|
||||
function appendSearchKeywords(aId, keywords) {
|
||||
let element = document.getElementById(aId);
|
||||
let searchKeywords = element.getAttribute("searchkeywords");
|
||||
searchKeywords && keywords.push(searchKeywords);
|
||||
element.setAttribute("searchkeywords", keywords.join(' '));
|
||||
};
|
||||
element.setAttribute("searchkeywords", keywords.join(" "));
|
||||
}
|
||||
|
||||
this._updateSanitizeSettingsButton();
|
||||
this.initializeHistoryMode();
|
||||
|
Loading…
Reference in New Issue
Block a user