Commit 2230c152 authored by Alexander.Trofimov's avatar Alexander.Trofimov

change condition

parent 4c3aa3b4
...@@ -820,7 +820,7 @@ ...@@ -820,7 +820,7 @@
// Проверяет, есть ли числовые значения в диапазоне // Проверяет, есть ли числовые значения в диапазоне
WorksheetView.prototype._hasNumberValueInActiveRange = function () { WorksheetView.prototype._hasNumberValueInActiveRange = function () {
var cell, cellType, isNumberFormat, arrCols = null, arrRows = null; var cell, cellType, isNumberFormat, arrCols = [], arrRows = [];
if (this.activeRange.isOneCell()) { if (this.activeRange.isOneCell()) {
// Для одной ячейки не стоит ничего делать // Для одной ячейки не стоит ничего делать
return null; return null;
...@@ -839,17 +839,13 @@ ...@@ -839,17 +839,13 @@
cellType = cell.cellType; cellType = cell.cellType;
isNumberFormat = (null == cellType || CellValueType.Number === cellType); isNumberFormat = (null == cellType || CellValueType.Number === cellType);
if (isNumberFormat) { if (isNumberFormat) {
if (!arrCols) {
arrCols = [];
arrRows = [];
}
arrCols.push(c); arrCols.push(c);
arrRows.push(r); arrRows.push(r);
} }
} }
} }
} }
if (arrCols) { if (0 !== arrCols.length) {
// Делаем массивы уникальными и сортируем // Делаем массивы уникальными и сортируем
arrCols = arrCols.filter(AscCommon.fOnlyUnique); arrCols = arrCols.filter(AscCommon.fOnlyUnique);
arrRows = arrRows.filter(AscCommon.fOnlyUnique); arrRows = arrRows.filter(AscCommon.fOnlyUnique);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment