1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-08-21 14:41:23 +02:00

change hasUndo and hasRedo to hasUndos and hasRedos

This commit is contained in:
Ian Storm Taylor
2016-07-28 11:13:12 -07:00
parent b2c1b844af
commit c1f4bce3b8
2 changed files with 10 additions and 10 deletions

View File

@@ -22,8 +22,8 @@ For convenience, in addition to transforms, many of the [`Selection`](./selectio
- [`fragment`](#fragment)
- [`inlines`](#inlines)
- [`texts`](#texts)
- [`hasUndo`](#hasundo)
- [`hasRedo`](#hasredo)
- [`hasUndos`](#hasundos)
- [`hasRedos`](#hasredos)
- [Selection-like Properties](#selection-like-properties)
- [`{edge}Key`](#edgekey)
- [`{edge}Offset`](#edgeoffset)
@@ -99,15 +99,15 @@ Get a list of the lowest-depth [`Inline`](./inline.md) nodes in the current sele
Get a list of the [`Text`](./text.md) nodes in the current selection.
### `hasUndo`
### `hasUndos`
`Boolean`
Whether there are undoable events.
Whether there are undoable snapshots to revert to in the history.
### `hasRedo`
### `hasRedos`
`Boolean`
Whether there are redoable events.
Whether there are redoable snapshots to revert to in the history.
## Selection-like Properties

View File

@@ -61,20 +61,20 @@ class State extends new Record(DEFAULTS) {
/**
* Is there undoable events?
*
* @return {Boolean} hasUndo
* @return {Boolean} hasUndos
*/
get hasUndo() {
get hasUndos() {
return this.history.undos.size > 0
}
/**
* Is there redoable events?
*
* @return {Boolean} hasRedo
* @return {Boolean} hasRedos
*/
get hasRedo() {
get hasRedos() {
return this.history.redos.size > 0
}