Bug 1288558 - Part 11: Add spaces around operaters for the rest of part. r=MattN

MozReview-Commit-ID: CaVkChviksU

--HG--
extra : rebase_source : abc3be7b34d635a33edc829f8c934ab3e31dd116
This commit is contained in:
Steve Chung 2016-09-07 18:26:03 +08:00
Родитель 5ab8257e32
Коммит abaa8cd719
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -328,9 +328,9 @@ function GetTreeSelections() {
let count = select.getRangeCount();
let min = new Object();
let max = new Object();
for (let i=0; i<count; i++) {
for (let i = 0; i < count; i++) {
select.getRangeAt(i, min, max);
for (let k=min.value; k<=max.value; k++) {
for (let k = min.value; k <= max.value; k++) {
if (k != -1) {
selections[selections.length] = k;
}