forked from kaydelaney/slate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix React warnings on renderMark, renderBlock, renderDecoration (ians…
…tormtaylor#2974) * fix React warnings on renderMark, renderBlock, renderDecoration * included decorateNode and relocated code into constants in EventHandler * Put decorateNode and render handlers into a seperate file. * fix indentation * overlooked indentation.
- Loading branch information
1 parent
1f673a9
commit 6e56932
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/** | ||
* Other handlers used by Slate plugins. | ||
* | ||
* @type {Array} | ||
*/ | ||
|
||
const OTHER_HANDLERS = [ | ||
'decorateNode', | ||
'renderAnnotation', | ||
'renderBlock', | ||
'renderDecoration', | ||
'renderDocument', | ||
'renderEditor', | ||
'renderInline', | ||
'renderMark', | ||
] | ||
|
||
/** | ||
* Export. | ||
* | ||
* @type {Array} | ||
*/ | ||
|
||
export default OTHER_HANDLERS |