added documentation on the sample
This commit is contained in:
@@ -0,0 +1,13 @@
|
|||||||
|
## Sample Application
|
||||||
|
|
||||||
|
This (really simple ;) application shows how to use Kotlin and the maven plugin to generate JavaScript and invoke it from inside a HTML web page.
|
||||||
|
|
||||||
|
The source [Hello.kt](https://github.com/JetBrains/kotlin/blob/master/libraries/examples/browser-example/src/main/kotlin/sample/Hello.kt) uses the [kotlin.browser](http://jetbrains.github.com/kotlin/versions/snapshot/apidocs/kotlin/browser/package-summary.html) API to access the *document* property to modify the HTML.
|
||||||
|
|
||||||
|
To run the example try:
|
||||||
|
|
||||||
|
cd libraries/examples/browser-example
|
||||||
|
mvn install
|
||||||
|
open sample.html
|
||||||
|
|
||||||
|
This should open a browser which then shows some simple HTML which then includes some dynamically generated content.
|
||||||
@@ -8,7 +8,7 @@ private var _document: Document? = null
|
|||||||
/**
|
/**
|
||||||
* Provides access to the current active browsers DOM for the currently visible page.
|
* Provides access to the current active browsers DOM for the currently visible page.
|
||||||
*/
|
*/
|
||||||
native var document: Document
|
native public var document: Document
|
||||||
get() = _document!!
|
get() = _document!!
|
||||||
set(value) {
|
set(value) {
|
||||||
_document = value
|
_document = value
|
||||||
|
|||||||
Reference in New Issue
Block a user