textarea-helper icon indicating copy to clipboard operation
textarea-helper copied to clipboard

<div class="tail"> doesnot work well

Open BDhara opened this issue 10 years ago • 1 comments

If there are multiple div then tail box doesnot work properly..try to add multiple div on top..

BDhara avatar Dec 23 '15 06:12 BDhara

add var textpos = this.$text.position(); pos.left = pos.left + textpos.left; pos.top = pos.top + textpos.top; in this.caretPos = function () { this.update(); var $caret = this.$mirror.find('.' + caretClass) , pos = $caret.position(); if (this.$text.css('direction') === 'rtl') { pos.right = this.$mirror.innerWidth() - pos.left - $caret.width(); pos.left = 'auto'; } var textpos = this.$text.position(); pos.left = pos.left + textpos.left; pos.top = pos.top + textpos.top; return pos; }; so that box's css will be appear at exact place

BDhara avatar Dec 23 '15 06:12 BDhara