Skip to content
This repository has been archived by the owner on Aug 10, 2024. It is now read-only.

Commit

Permalink
didn't commit last time
Browse files Browse the repository at this point in the history
  • Loading branch information
sanity committed Jul 2, 2017
1 parent 68fc5ee commit 76d50a1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ plugins {
}

group 'io.kweb'
version '0.2.8'
version '0.2.10'

apply plugin: 'java'
apply plugin: 'kotlin'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ class SemanticUIPlugin : KWebPlugin(dependsOn = setOf(jqueryCore)) {

val semanticUIPlugin = SemanticUIPlugin()

val sUI get() = SemanticUIClasses()
val semantic get() = SemanticUIClasses()
10 changes: 5 additions & 5 deletions src/main/kotlin/io/kweb/plugins/semanticUI/testing.kt
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ import io.kweb.dom.element.new
fun main(args: Array<String>) {
Kweb(port = 3525, plugins = listOf(semanticUIPlugin)) {
doc.body.new {
div(sUI.ui.container).new {
div(sUI.ui.three.item.menu).new {
a(attributes = sUI.active.item).text("Editorials")
a(attributes = sUI.item).text("Reviews")
a(attributes = sUI.item).text("Upcoming Events")
div(semantic.ui.container).new {
div(semantic.ui.three.item.menu).new {
a(attributes = semantic.active.item).text("Editorials")
a(attributes = semantic.item).text("Reviews")
a(attributes = semantic.item).text("Upcoming Events")
}
}
}
Expand Down

0 comments on commit 76d50a1

Please sign in to comment.