Fix JavaScript strict warning: chrome://instantbird/content/blist.js, line 153/235: variable a/b redeclares argument, r=florian.
This commit is contained in:
Родитель
d63713b925
Коммит
c6d12e7158
|
@ -150,7 +150,7 @@ buddyListContextMenu.prototype = {
|
|||
let groupId =
|
||||
(this.onBuddy ? this.target.contact : this.target).group.groupId;
|
||||
let sortFunction = function (a, b) {
|
||||
let [a, b] = [a.name.toLowerCase(), b.name.toLowerCase()];
|
||||
[a, b] = [a.name.toLowerCase(), b.name.toLowerCase()];
|
||||
return a < b ? 1 : a > b ? -1 : 0;
|
||||
};
|
||||
Services.tags.getTags()
|
||||
|
@ -232,7 +232,7 @@ buddyListContextMenu.prototype = {
|
|||
popup.removeChild(item);
|
||||
|
||||
let sortFunction = function (a, b) {
|
||||
let [a, b] = [a.name.toLowerCase(), b.name.toLowerCase()];
|
||||
[a, b] = [a.name.toLowerCase(), b.name.toLowerCase()];
|
||||
return a < b ? 1 : a > b ? -1 : 0;
|
||||
};
|
||||
Services.tags.getTags()
|
||||
|
|
Загрузка…
Ссылка в новой задаче