Commit 6cc541ae authored by Igor.Zotov's avatar Igor.Zotov Committed by Alexander.Trofimov

исключаем pivot table при отрисовке миниатюр форматированных таблиц.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@47137 954022d7-b5bf-4e40-9824-e11837661b57
parent abb92f2e
......@@ -1501,13 +1501,16 @@
{
for(var i in customStyles)
{
result[n] =
if(customStyles[i].table)
{
name: i,
type: 'custom',
image: this._drawSmallIconTable(canvas,customStyles[i])
};
n++;
result[n] =
{
name: i,
type: 'custom',
image: this._drawSmallIconTable(canvas,customStyles[i])
};
n++;
}
}
}
var defaultStyles = wb.TableStyles.DefaultStyles;
......@@ -1515,13 +1518,16 @@
{
for(var i in defaultStyles)
{
result[n] =
if(defaultStyles[i].table)
{
name: i,
type: 'default',
image: this._drawSmallIconTable(canvas,defaultStyles[i])
};
n++;
result[n] =
{
name: i,
type: 'default',
image: this._drawSmallIconTable(canvas,defaultStyles[i])
};
n++;
}
}
}
return result;
......
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