Fix JavaScript strict warning: chrome://instantbird/content/blist.js, line 153/235: variable a/b redeclares argument, r=florian.

This commit is contained in:
aleth 2012-08-03 16:05:47 +02:00
Родитель d63713b925
Коммит c6d12e7158
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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()