aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'src/main')
-rw-r--r--src/main/kotlin/pl/treksoft/kvision/form/text/RichTextInput.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/kotlin/pl/treksoft/kvision/form/text/RichTextInput.kt b/src/main/kotlin/pl/treksoft/kvision/form/text/RichTextInput.kt
index ffdcc045..d90c5769 100644
--- a/src/main/kotlin/pl/treksoft/kvision/form/text/RichTextInput.kt
+++ b/src/main/kotlin/pl/treksoft/kvision/form/text/RichTextInput.kt
@@ -89,8 +89,8 @@ open class RichTextInput(value: String? = null, classes: Set<String> = setOf())
}
override fun afterDestroy() {
- document.getElementById("trix-input-" + trixId)?.remove()
- document.getElementById("trix-toolbar-" + trixId)?.remove()
+ document.getElementById("trix-input-" + trixId)?.let { jQuery(it).remove() }
+ document.getElementById("trix-toolbar-" + trixId)?.let { jQuery(it).remove() }
trixId = null
}