Commit 1ed2eab4 authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander.Trofimov

правки для подбора шрифтов (десктопный редактор)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@63036 954022d7-b5bf-4e40-9824-e11837661b57
parent f2c2c84c
......@@ -819,6 +819,8 @@ CFontSelect.prototype =
_len = fs.GetLong();
this.m_wsFontPath = fs.GetString(_len >> 1);
if (undefined === window["AscDesktopEditor"])
{
// удаляем все, кроме имени файла
var _found1 = this.m_wsFontPath.lastIndexOf("/");
var _found2 = this.m_wsFontPath.lastIndexOf("\\");
......@@ -827,6 +829,12 @@ CFontSelect.prototype =
if (0 <= _found)
this.m_wsFontPath = this.m_wsFontPath.substring(_found + 1);
}
else
{
this.m_wsFontPath = this.m_wsFontPath.replace(/\\\\/g, "\\");
this.m_wsFontPath = this.m_wsFontPath.replace(/\\/g, "/");
}
}
this.m_lIndex = fs.GetLong();
......
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