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,13 +819,21 @@ CFontSelect.prototype = ...@@ -819,13 +819,21 @@ CFontSelect.prototype =
_len = fs.GetLong(); _len = fs.GetLong();
this.m_wsFontPath = fs.GetString(_len >> 1); this.m_wsFontPath = fs.GetString(_len >> 1);
// удаляем все, кроме имени файла if (undefined === window["AscDesktopEditor"])
var _found1 = this.m_wsFontPath.lastIndexOf("/"); {
var _found2 = this.m_wsFontPath.lastIndexOf("\\"); // удаляем все, кроме имени файла
var _found = Math.max(_found1, _found2); var _found1 = this.m_wsFontPath.lastIndexOf("/");
var _found2 = this.m_wsFontPath.lastIndexOf("\\");
var _found = Math.max(_found1, _found2);
if (0 <= _found) if (0 <= _found)
this.m_wsFontPath = this.m_wsFontPath.substring(_found + 1); 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(); 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