diff options
author | Robert Jaros <rjaros@finn.pl> | 2019-07-09 20:08:05 +0200 |
---|---|---|
committer | Robert Jaros <rjaros@finn.pl> | 2019-07-09 20:08:05 +0200 |
commit | d1612a42ec508f3ef0f61163d181e01931b9157c (patch) | |
tree | e2f8da4c115c156a01caa9aa7c419a0084cba047 /src/main/kotlin/pl/treksoft/kvision/form/check | |
parent | d0ea8ade727c756aab6c878773fb2873ec41cd23 (diff) | |
download | kvision-d1612a42ec508f3ef0f61163d181e01931b9157c.tar.gz kvision-d1612a42ec508f3ef0f61163d181e01931b9157c.tar.bz2 kvision-d1612a42ec508f3ef0f61163d181e01931b9157c.zip |
New DOM bindings. Drop horrible "strictDOM" property.
Diffstat (limited to 'src/main/kotlin/pl/treksoft/kvision/form/check')
-rw-r--r-- | src/main/kotlin/pl/treksoft/kvision/form/check/CheckInput.kt | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/main/kotlin/pl/treksoft/kvision/form/check/CheckInput.kt b/src/main/kotlin/pl/treksoft/kvision/form/check/CheckInput.kt index 07b86b4c..a486b82e 100644 --- a/src/main/kotlin/pl/treksoft/kvision/form/check/CheckInput.kt +++ b/src/main/kotlin/pl/treksoft/kvision/form/check/CheckInput.kt @@ -51,7 +51,6 @@ abstract class CheckInput( ) : Widget(classes), FormInput { init { - this.vnkey = "kv_checkinput_${counter++}" this.setInternalEventListener<CheckInput> { click = { val v = getElementJQuery()?.prop("checked") as Boolean? @@ -162,8 +161,4 @@ abstract class CheckInput( override fun blur() { getElementJQuery()?.blur() } - - companion object { - internal var counter = 0 - } } |