* Removes fake cursor from a container * * @param container - container to look for
(container: HTMLElement = document.body)
| 399 | * @param container - container to look for |
| 400 | */ |
| 401 | public static removeFakeCursor(container: HTMLElement = document.body): void { |
| 402 | const fakeCursor = $.find(container, `.codex-editor__fake-cursor`); |
| 403 | |
| 404 | if (!fakeCursor) { |
| 405 | return; |
| 406 | } |
| 407 | |
| 408 | fakeCursor.remove(); |
| 409 | } |
| 410 | |
| 411 | /** |
| 412 | * Removes fake background |