Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Fixed invalid variable name.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamil Piechaczek committed Feb 16, 2018
1 parent 1aee370 commit a6ae634
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/model/documentselection.js
Original file line number Diff line number Diff line change
Expand Up @@ -510,9 +510,9 @@ class LiveSelection extends Selection {

this.listenTo( this._model, 'applyOperation', () => {
while ( this._fixGraveyardRangesData.length ) {
const { range, sourcePosition } = this._fixGraveyardRangesData.shift();
const { range, position } = this._fixGraveyardRangesData.shift();

this._fixGraveyardSelection( range, sourcePosition );
this._fixGraveyardSelection( range, position );
}

if ( this._hasChangedRange ) {
Expand Down

0 comments on commit a6ae634

Please sign in to comment.