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