-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2452 from ckeditor/t/2394
Fixed emoji text matching with repeated symbols in a single line
- Loading branch information
Showing
5 changed files
with
67 additions
and
43 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<h2>Classic editor</h2> | ||
<div id="classic"></div> | ||
|
||
<h2>Inline editor</h2> | ||
<div id="inline" contenteditable="true"></div> | ||
|
||
<script> | ||
CKEDITOR.replace( 'classic' ); | ||
CKEDITOR.inline( 'inline' ); | ||
</script> |
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,18 @@ | ||
@bender-tags: 4.11.0, bug, emoji, 2394 | ||
@bender-ckeditor-plugins: wysiwygarea, sourcearea, emoji | ||
@bender-ui: collapsed | ||
@bender-include: ../_helpers/tools.js | ||
|
||
## For both editors: | ||
|
||
1. Focus the editor. | ||
1. Type `:bu :bu`. | ||
|
||
### Expected | ||
|
||
Dropdown shows up with `:bug` (🐛) suggestion symbol. | ||
|
||
### Unexpected | ||
|
||
* Dropdown doesn't appear. | ||
* Dropdown contains different sugestion symbols. |