Commit d3afab46 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Убрал заглушку для меню в asc_CBorder

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@50953 954022d7-b5bf-4e40-9824-e11837661b57
parent 6a5fb2dc
...@@ -85,14 +85,8 @@ ...@@ -85,14 +85,8 @@
prot["asc_getColor"] = prot.asc_getColor; prot["asc_getColor"] = prot.asc_getColor;
function asc_CBorder(style, color) { function asc_CBorder(style, color) {
if (3 === arguments.length) { this.style = style !== undefined ? style : "none";
// ToDo заглушка на время, пока уберут код в меню this.color = color !== undefined ? color : null;
this.style = arguments[1] !== undefined ? arguments[1] : "none";
this.color = arguments[2] !== undefined ? arguments[2] : null;
} else {
this.style = style !== undefined ? style : "none";
this.color = color !== undefined ? color : null;
}
} }
asc_CBorder.prototype = { asc_CBorder.prototype = {
......
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