"js" -> "kotlin.js"

This commit is contained in:
Zalim Bashorov
2014-09-11 16:33:01 +04:00
parent b28b0046d1
commit 838c384672
50 changed files with 171 additions and 228 deletions
+2 -4
View File
@@ -1,8 +1,6 @@
package js.dom.html5
package kotlin.js.dom.html5
import js.native
import js.noImpl
import js.dom.html.HTMLElement
import kotlin.js.dom.html.HTMLElement
import org.w3c.dom.Element
public native trait HTMLCanvasElement : HTMLElement {
-2
View File
@@ -1,7 +1,5 @@
package html5.files
import js.native
native
class FileReader() {
var onloadend : ((FileReaderEvent)->Unit)? = js.noImpl //
+1 -3
View File
@@ -1,11 +1,9 @@
package html5.localstorage
import js.native
native
val localStorage : LocalStorageClass = js.noImpl
native
class LocalStorageClass() {
fun getItem(key : String) : Any? = js.noImpl
fun setItem(key : String, value : Any?) : Unit = js.noImpl
}
}