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

Исправлен баг в проверке орфографии (баг 21627).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@51029 954022d7-b5bf-4e40-9824-e11837661b57
parent 28e4f1f6
...@@ -332,7 +332,7 @@ CParaSpellChecker.prototype = ...@@ -332,7 +332,7 @@ CParaSpellChecker.prototype =
for ( var Index = 0; Index < Count; Index++ ) for ( var Index = 0; Index < Count; Index++ )
{ {
var Element = this.Elements[Index]; var Element = this.Elements[Index];
if ( Element.StartPos > Pos ) if ( Element.StartPos >= Pos )
{ {
if ( null == Right ) if ( null == Right )
Right = Element; Right = Element;
......
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