This repository has been archived by the owner on Aug 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
48 changed files
with
230 additions
and
234 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 0 additions & 20 deletions
20
src/main/kotlin/com/github/sanity/kweb/demos/event/event.kt
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
src/main/kotlin/com/github/sanity/kweb/dom/element/events/on.kt
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...tlin/com/github/sanity/kweb/WebBrowser.kt → src/main/kotlin/io/kweb/WebBrowser.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...kweb/browserConnection/OutboundChannel.kt → ...kweb/browserConnection/OutboundChannel.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions
14
...m/github/sanity/kweb/demos/async/async.kt → src/main/kotlin/io/kweb/demos/async/async.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...rDetection/buildPageTime/buildPageTime.kt → ...rDetection/buildPageTime/buildPageTime.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...b/demos/errorDetection/jsError/jsError.kt → ...b/demos/errorDetection/jsError/jsError.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package io.kweb.demos.event | ||
|
||
import io.kweb.Kweb | ||
import io.kweb.dom.element.creation.tags.input | ||
import io.kweb.dom.element.events.on | ||
import io.kweb.dom.element.new | ||
|
||
/** | ||
* Created by ian on 2/21/17. | ||
*/ | ||
|
||
fun main(args: Array<String>) { | ||
Kweb(4682) { | ||
doc.body.new { | ||
input().on.keydown { e -> | ||
println("Received: '${e}'") | ||
} | ||
} | ||
} | ||
} |
18 changes: 9 additions & 9 deletions
18
...anity/kweb/demos/plugins/jquery/jquery.kt → ...in/io/kweb/demos/plugins/jquery/jquery.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 9 additions & 9 deletions
18
...com/github/sanity/kweb/demos/todo/todo.kt → src/main/kotlin/io/kweb/demos/todo/todo.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ity/kweb/dev/hotswap/KwebHotswapPlugin.kt → .../io/kweb/dev/hotswap/KwebHotswapPlugin.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 8 additions & 8 deletions
16
...in/com/github/sanity/kweb/dom/Document.kt → src/main/kotlin/io/kweb/dom/Document.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...tlin/com/github/sanity/kweb/dom/Router.kt → src/main/kotlin/io/kweb/dom/Router.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.github.sanity.kweb.dom | ||
package io.kweb.dom | ||
|
||
/** | ||
* Created by ian on 4/3/17. | ||
|
2 changes: 1 addition & 1 deletion
2
.../sanity/kweb/dom/attributes/attributes.kt → ...tlin/io/kweb/dom/attributes/attributes.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.github.sanity.kweb.dom.attributes | ||
package io.kweb.dom.attributes | ||
|
||
/** | ||
* Created by ian on 1/14/17. | ||
|
10 changes: 5 additions & 5 deletions
10
...sanity/kweb/dom/cookies/CookieReceiver.kt → ...lin/io/kweb/dom/cookies/CookieReceiver.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 11 additions & 11 deletions
22
...github/sanity/kweb/dom/element/Element.kt → ...ain/kotlin/io/kweb/dom/element/Element.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
...eb/dom/element/creation/ElementCreator.kt → ...eb/dom/element/creation/ElementCreator.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
...y/kweb/dom/element/creation/tags/input.kt → ...o/kweb/dom/element/creation/tags/input.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.