Commit e31d6551 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Сделано, чтобы орфография не проверялась внутри полей (баг 30094).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@64808 954022d7-b5bf-4e40-9824-e11837661b57
parent d47f67e2
......@@ -1134,6 +1134,33 @@ ParaMath.prototype.Remove_SpellCheckerElement = function(Element)
ParaMath.prototype.Clear_SpellingMarks = function()
{
};
//----------------------------------------------------------------------------------------------------------------------
// ParaField
//----------------------------------------------------------------------------------------------------------------------
ParaField.prototype.Restart_CheckSpelling = function()
{
};
ParaField.prototype.Check_Spelling = function(SpellCheckerEngine, Depth)
{
if ( true === SpellCheckerEngine.bWord )
{
SpellCheckerEngine.bWord = false;
SpellCheckerEngine.SpellChecker.Add( SpellCheckerEngine.StartPos, SpellCheckerEngine.EndPos, SpellCheckerEngine.sWord, SpellCheckerEngine.CurLcid );
}
};
ParaField.prototype.Add_SpellCheckerElement = function(Element, Start, Depth)
{
};
ParaField.prototype.Remove_SpellCheckerElement = function(Element)
{
};
ParaField.prototype.Clear_SpellingMarks = function()
{
};
......
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