Commit 6a962d8e authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Fixed bug #26692

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@68285 954022d7-b5bf-4e40-9824-e11837661b57
parent 20d45673
......@@ -1530,24 +1530,24 @@
t._cleanSelection();
};
CellEditor.prototype._topLineMouseUp = function () {
var t = this;
this.callTopLineMouseup = false;
// при такой комбинации ctrl+a, click, ctrl+a, click не обновляется selectionStart
// поэтому выполняем обработку после обработчика системы
setTimeout( function () {
var b = t.input.selectionStart;
var e = t.input.selectionEnd;
if ( typeof b !== "undefined" ) {
if ( t.cursorPos !== b ) {
t._moveCursor( kPosition, b );
}
if ( b !== e ) {
t._selectChars( kPosition, e );
}
}
} );
};
CellEditor.prototype._topLineMouseUp = function() {
var t = this;
this.callTopLineMouseup = false;
// при такой комбинации ctrl+a, click, ctrl+a, click не обновляется selectionStart
// поэтому выполняем обработку после обработчика системы
setTimeout(function() {
var b = t.input.selectionStart;
var e = t.input.selectionEnd;
if (typeof b !== "undefined") {
if (t.cursorPos !== b || t.selectionBegin !== t.selectionEnd) {
t._moveCursor(kPosition, b);
}
if (b !== e) {
t._selectChars(kPosition, e);
}
}
});
};
CellEditor.prototype._syncEditors = function () {
var t = this;
......
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