forked from slab/quill
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Table cell and row should not be removed on backspace press or typing…
… even if it is selected (T1062588) (#89)
- Loading branch information
Showing
8 changed files
with
796 additions
and
10 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
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
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,37 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>DevExtreme-Quill Base Editing</title> | ||
<link rel="stylesheet" type="text/css" href="src/dx-quill.core.css"/> | ||
<script type="text/javascript" src="src/dx-quill.js"></script> | ||
</head> | ||
|
||
<body> | ||
<div> | ||
<div id="editor"> | ||
<table> | ||
<tbody> | ||
<tr> | ||
<td>1</td> | ||
<td>2</td> | ||
<td>3</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<p><br></p> | ||
</div> | ||
</div> | ||
</body> | ||
|
||
<script> | ||
const editorElem = document.getElementById('editor'); | ||
const editor = new DevExpress.Quill(editorElem, { | ||
modules: { | ||
table: true | ||
} | ||
}); | ||
</script> | ||
</html> |
Oops, something went wrong.