1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-08-22 15:02:51 +02:00

rename history transforms to on-history

This commit is contained in:
Ian Storm Taylor
2016-08-30 15:33:11 -07:00
parent a6b248fbe9
commit 9d2a3b9ecb
2 changed files with 17 additions and 17 deletions

View File

@@ -126,6 +126,16 @@ import {
moveToRangeOf,
} from './on-selection'
/**
* On history.
*/
import {
redo,
save,
undo,
} from './on-history'
/**
* Normalize.
*/
@@ -135,16 +145,6 @@ import {
normalizeSelection,
} from './normalize'
/**
* History.
*/
import {
redo,
save,
undo,
} from './history'
/**
* Export.
*
@@ -268,13 +268,6 @@ export default {
moveToOffsets,
moveToRangeOf,
/**
* Normalize.
*/
normalizeDocument,
normalizeSelection,
/**
* History.
*/
@@ -283,4 +276,11 @@ export default {
save,
undo,
/**
* Normalize.
*/
normalizeDocument,
normalizeSelection,
}