Skip to content

Commit

Permalink
Add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ellatrix committed Nov 20, 2018
1 parent 1fedfae commit 5ae8f47
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions packages/editor/src/components/rich-text/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,20 @@ export class RichText extends Component {
createRecord() {
const range = getSelection().getRangeAt( 0 );

// If the range is shallowly equal to the last, return the last
// calculated value. This is useful when creating values on the
// `selectionchange` event, which fires more often than it should
// without a change in selection.
//
// Shallowly checking equality for ranges is fine:
//
// > Thus subsequent calls of this method returns the same range object
// > if nothing has removed the context object's range in the meantime.
// > In particular, getSelection().getRangeAt( 0 ) ===
// > getSelection().getRangeAt( 0 ) evaluates to true if the selection
// > is not empty.
// >
// > https://w3c.github.io/selection-api/#dom-selection-getrangeat
if ( range === this.createRecord.lastRange ) {
return this.createRecord.lastRecord;
}
Expand Down

0 comments on commit 5ae8f47

Please sign in to comment.