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
1 changed files with 3 additions and 3 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue