mirror of https://github.com/status-im/codimd.git
Fix getCaretPosition in text complete might get undefined position error
This commit is contained in:
parent
12b7646f24
commit
f3d4b55856
|
@ -863,16 +863,31 @@ if (typeof jQuery === 'undefined') {
|
|||
//
|
||||
// FIXME: Calculate the left top corner of `this.option.appendTo` element.
|
||||
getCaretPosition: function () {
|
||||
//var position = this._getCaretRelativePosition();
|
||||
//var offset = this.$el.offset();
|
||||
//var offset = $('.CodeMirror-cursor').offset();
|
||||
var position = $('.CodeMirror-cursor').position();
|
||||
var menu = $('.cursor-menu .dropdown-menu');
|
||||
var offsetLeft = parseFloat(menu.attr('data-offset-left'));
|
||||
var offsetTop = parseFloat(menu.attr('data-offset-top'));
|
||||
position.left += offsetLeft;
|
||||
position.top += offsetTop;
|
||||
return position;
|
||||
if ($('.CodeMirror-cursor').length > 0) {
|
||||
var position = $('.CodeMirror-cursor').position();
|
||||
var menu = $('.cursor-menu .dropdown-menu');
|
||||
var offsetLeft = parseFloat(menu.attr('data-offset-left'));
|
||||
var offsetTop = parseFloat(menu.attr('data-offset-top'));
|
||||
position.left += offsetLeft;
|
||||
position.top += offsetTop;
|
||||
return position;
|
||||
} else {
|
||||
var position = this._getCaretRelativePosition();
|
||||
var offset = this.$el.offset();
|
||||
|
||||
// Calculate the left top corner of `this.option.appendTo` element.
|
||||
var $parent = this.option.appendTo;
|
||||
if ($parent) {
|
||||
if (!($parent instanceof $)) { $parent = $($parent); }
|
||||
var parentOffset = $parent.offsetParent().offset();
|
||||
offset.top -= parentOffset.top;
|
||||
offset.left -= parentOffset.left;
|
||||
}
|
||||
|
||||
position.top += offset.top;
|
||||
position.left += offset.left;
|
||||
return position;
|
||||
}
|
||||
},
|
||||
|
||||
// Focus on the element.
|
||||
|
|
Loading…
Reference in New Issue