diff options
author | Robert Jaros <rjaros@finn.pl> | 2018-02-09 20:22:17 +0100 |
---|---|---|
committer | Robert Jaros <rjaros@finn.pl> | 2018-02-09 20:22:17 +0100 |
commit | 9966f82dcbcf6df851ca088c4060ca8b1a981036 (patch) | |
tree | 20a3d6e95c214c5e9b6f0ce5678ae10fab017a44 | |
parent | 4c55364efdc426faae10febda49ad40164fdab7a (diff) | |
download | kvision-0.0.2.tar.gz kvision-0.0.2.tar.bz2 kvision-0.0.2.zip |
Internet Explorer compatibility fix.0.0.2
-rw-r--r-- | src/main/kotlin/pl/treksoft/kvision/form/text/RichTextInput.kt | 4 | ||||
-rw-r--r-- | src/test/kotlin/test/pl/treksoft/kvision/TestUtil.kt | 4 |
2 files changed, 4 insertions, 4 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 } diff --git a/src/test/kotlin/test/pl/treksoft/kvision/TestUtil.kt b/src/test/kotlin/test/pl/treksoft/kvision/TestUtil.kt index 32994fc3..56a33690 100644 --- a/src/test/kotlin/test/pl/treksoft/kvision/TestUtil.kt +++ b/src/test/kotlin/test/pl/treksoft/kvision/TestUtil.kt @@ -23,8 +23,8 @@ package test.pl.treksoft.kvision import org.w3c.dom.Element import pl.treksoft.jquery.jQuery -import pl.treksoft.kvision.panel.Root import pl.treksoft.kvision.core.Widget +import pl.treksoft.kvision.panel.Root import kotlin.browser.document interface TestSpec { @@ -59,7 +59,7 @@ interface DomSpec : TestSpec { override fun afterTest() { val div = document.getElementById("pretest") - div?.remove() + div?.let { jQuery(it).remove() } jQuery(`object` = ".modal-backdrop").remove() } |