Commit 019d7ae0 authored by Oleg Korshul's avatar Oleg Korshul

chrome, linux баг с вводом при окончании композиции

parent 84a158de
......@@ -240,7 +240,10 @@
onCompositionEnd : function(e)
{
this.onCompositionUpdate(e, false);
// chrome, linux: всегда приходит пустая дата
if (e.data !== undefined && (e.data !== "" || (this.compositionValue.length == 0)))
this.onCompositionUpdate(e, false);
this.Listener.Set_CursorPosInCompositeText(1000); // max
this.clear();
......
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