mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-22 06:51:21 +02:00
make DocumentOffset compatible with what is returned from dom/getCaret
so we can return a DocumentOffset from there without breakage
This commit is contained in:
parent
917700a1fc
commit
648ae37ff4
@ -15,12 +15,12 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
export default class DocumentOffset {
|
export default class DocumentOffset {
|
||||||
constructor(offset, atEnd) {
|
constructor(offset, atNodeEnd) {
|
||||||
this.offset = offset;
|
this.offset = offset;
|
||||||
this.atEnd = atEnd;
|
this.atNodeEnd = atNodeEnd;
|
||||||
}
|
}
|
||||||
|
|
||||||
asPosition(model) {
|
asPosition(model) {
|
||||||
return model.positionForOffset(this.offset, this.atEnd);
|
return model.positionForOffset(this.offset, this.atNodeEnd);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user