Changes to native apis.
This commit is contained in:
@@ -22,9 +22,9 @@ class MathClass() {
|
|||||||
fun tan(value : Double) = 0.0
|
fun tan(value : Double) = 0.0
|
||||||
fun log(value : Double) = 0.0
|
fun log(value : Double) = 0.0
|
||||||
fun pow(base : Double, exp : Double) = 0.0
|
fun pow(base : Double, exp : Double) = 0.0
|
||||||
fun round(value : Double) = 0.0
|
fun round(value : Number) = 0
|
||||||
fun floor(value : Double) = 0.0
|
fun floor(value : Number) = 0
|
||||||
fun ceil(value : Double) = 0.0
|
fun ceil(value : Number) = 0
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -15,6 +15,8 @@ fun JQuery.dialog(params : Json) : JQuery = js.noImpl
|
|||||||
native
|
native
|
||||||
fun JQuery.dialog(mode : String, param : String) : Any? = js.noImpl
|
fun JQuery.dialog(mode : String, param : String) : Any? = js.noImpl
|
||||||
native
|
native
|
||||||
|
fun JQuery.dialog(mode : String) : JQuery = js.noImpl
|
||||||
|
native
|
||||||
fun JQuery.dialog(mode : String, param : String, value : Any?) : JQuery = js.noImpl
|
fun JQuery.dialog(mode : String, param : String, value : Any?) : JQuery = js.noImpl
|
||||||
native
|
native
|
||||||
fun JQuery.button() : JQuery = js.noImpl;
|
fun JQuery.button() : JQuery = js.noImpl;
|
||||||
|
|||||||
Reference in New Issue
Block a user