You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: js/ReadMe.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ The Kotlin Standard Library for JS is built with gradle, see the corresponding m
11
11
12
12
## Reusing JVM based test cases in JavaScript
13
13
14
-
Any Kotlin test cases using the **org.junit.Test** annotation and the [kotlin.test](../libraries/kotlin.test) package, such as [this test case](../libraries/stdlib/test/text/StringNumberConversionTest.kt#L16) are automatically converted to JavaScript using [QUnit](http://qunitjs.com/).
14
+
Any Kotlin test cases using the **org.junit.Test** annotation and the [kotlin.test](../libraries/kotlin.test) package, such as [this test case](../libraries/stdlib/test/text/StringNumberConversionTest.kt#L16) are automatically converted to JavaScript using [QUnit](https://qunitjs.com/).
15
15
16
16
This allows the test cases to be [run directly in a web page in any web browser](../libraries/stdlib/js/ReadMe.md).
Copy file name to clipboardexpand all lines: libraries/ReadMe.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ You can work with the maven modules of this maven project in IDEA from the [root
22
22
23
23
### Building
24
24
25
-
You need to install a recent (at least 3.3) [Maven](http://maven.apache.org/) distribution.
25
+
You need to install a recent (at least 3.3) [Maven](https://maven.apache.org/) distribution.
26
26
27
27
Before building this Maven project you need to build and install the required artifacts built with Gradle to the local maven repository, by issuing the following command in the root project:
Copy file name to clipboardexpand all lines: libraries/examples/browser-example-with-library/ReadMe.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
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.
4
4
5
-
The source [Hello.kt](https://github.com/JetBrains/kotlin/blob/master/libraries/examples/browser-example-with-library/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.
5
+
The source [Hello.kt](https://github.com/JetBrains/kotlin/blob/master/libraries/examples/browser-example-with-library/src/main/kotlin/sample/Hello.kt) uses the [kotlin.browser](https://jetbrains.github.com/kotlin/versions/snapshot/apidocs/kotlin/browser/package-summary.html) API to access the *document* property to modify the HTML.
Copy file name to clipboardexpand all lines: libraries/examples/browser-example/ReadMe.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
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.
4
4
5
-
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.
5
+
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](https://jetbrains.github.com/kotlin/versions/snapshot/apidocs/kotlin/browser/package-summary.html) API to access the *document* property to modify the HTML.
6
6
7
7
### Running the sample in a web browser
8
8
@@ -14,11 +14,11 @@ To run the example try:
14
14
15
15
This should open a browser which then shows some simple HTML which then includes some dynamically generated content.
16
16
17
-
## Running the sample on Java 7 with JavaFX and [kool.io](http://kool.io/)'s browser
17
+
## Running the sample on Java 7 with JavaFX and [kool.io](https://kool.io/)'s browser
18
18
19
19
You can also run the sample as Java code on a JVM using JavaFX (which includes its own webkit rendering engine for HTML / CSS / JS support) using the [kool.io JavaFX browser](https://github.com/koolio/kool/blob/master/samples/kool-template-sample/ReadMe.md).
20
20
21
-
First you need to install [Java 7 update 4](http://www.oracle.com/technetwork/java/javase/overview/index.html) or later which ships with JavaFX.
21
+
First you need to install [Java 7 update 4](https://www.oracle.com/technetwork/java/javase/overview/index.html) or later which ships with JavaFX.
22
22
23
23
You will need to setup **JAVA_HOME** and **PATH** environment variables to point to the latest JDK. If you install Java 7 and use a Mac you might want to run this first...
Copy file name to clipboardexpand all lines: libraries/stdlib/samples/ReadMe.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
This project contains samples for the standard library functions.
4
4
They are located in the [test](test) source root and each sample is written like a small unit test.
5
5
Then these samples are referenced in the documentation of the standard library functions
6
-
with the [`@sample`](http://kotlinlang.org/docs/reference/kotlin-doc.html#block-tags) tag and are embedded in the generated documentation as runnable samples.
6
+
with the [`@sample`](https://kotlinlang.org/docs/reference/kotlin-doc.html#block-tags) tag and are embedded in the generated documentation as runnable samples.
0 commit comments