diff options
author | Robert Jaros <rjaros@finn.pl> | 2020-03-17 17:13:54 +0100 |
---|---|---|
committer | Robert Jaros <rjaros@finn.pl> | 2020-03-17 17:13:54 +0100 |
commit | e403cb447ec5a088439c75ff547c2c4dcab95928 (patch) | |
tree | 142ca1d51278af6515ef56b2387d58d4e1a747e5 /src/main/kotlin | |
parent | d9e4283cb434ddb5f948241db0b204eee5941fcc (diff) | |
download | kvision-e403cb447ec5a088439c75ff547c2c4dcab95928.tar.gz kvision-e403cb447ec5a088439c75ff547c2c4dcab95928.tar.bz2 kvision-e403cb447ec5a088439c75ff547c2c4dcab95928.zip |
Missing anchor tag type (#144)
Diffstat (limited to 'src/main/kotlin')
-rw-r--r-- | src/main/kotlin/pl/treksoft/kvision/html/Tag.kt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/kotlin/pl/treksoft/kvision/html/Tag.kt b/src/main/kotlin/pl/treksoft/kvision/html/Tag.kt index 6075bdff..95445ece 100644 --- a/src/main/kotlin/pl/treksoft/kvision/html/Tag.kt +++ b/src/main/kotlin/pl/treksoft/kvision/html/Tag.kt @@ -53,6 +53,7 @@ enum class TAG(internal val tagName: String) { OL("ol"), DIV("div"), LABEL("label"), + A("a"), I("i"), B("b"), |