Fix event handler for clicking on story text
It wouldn't trigger any events originally when you click on parts of the story text area that didn't contain any text, e.g. on a blank line or on the blank part of a line to the right of the actual text.
This commit is contained in:
parent
5f154b8b55
commit
25758dc3ab
|
@ -1352,7 +1352,7 @@ $(document).ready(function(){
|
||||||
chunkOnKeyDown
|
chunkOnKeyDown
|
||||||
).on('paste',
|
).on('paste',
|
||||||
chunkOnPaste
|
chunkOnPaste
|
||||||
).on('focus',
|
).on('click',
|
||||||
chunkOnSelectionChange
|
chunkOnSelectionChange
|
||||||
).on('keydown',
|
).on('keydown',
|
||||||
chunkOnSelectionChange
|
chunkOnSelectionChange
|
||||||
|
|
Loading…
Reference in New Issue