Fixing errors in Maven build

This commit is contained in:
Andrey Breslav
2012-12-10 20:42:19 +04:00
parent fc0750b504
commit a93596ca5e
6 changed files with 14 additions and 5 deletions
@@ -5,6 +5,6 @@ import kotlin.browser.document
fun myApp() {
val element = document.getElementById("foo")
if (element != null) {
element.appendChild(document.createTextNode("Some Dynamically Created Content!!!"))
element.appendChild(document.createTextNode("Some Dynamically Created Content!!!")!!)
}
}