Skip to content
This repository was archived by the owner on Dec 17, 2025. It is now read-only.

Commit 94ea2ad

Browse files
Update broken references (#923)
Signed-off-by: Emmanuel Ferdman <emmanuelferdman@gmail.com>
1 parent 05b221d commit 94ea2ad

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

examples/todomvc/src/jsMain/resources/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<footer class="info">
1414
<p>Double-click to edit a todo</p>
1515
<p>Source at <a
16-
href="https://github.com/jwstegemann/fritz2/blob/master/examples/todomvc/src/jsMain/kotlin/dev/fritz2/examples/todomvc/todomvc.kt">github</a>
16+
href="https://github.com/jwstegemann/fritz2/blob/master/examples/todomvc/src/jsMain/kotlin/dev/fritz2/examples/todomvc/TodoMvc.kt">github</a>
1717
</p>
1818
<!-- Change this out with your name and url ↓ -->
1919
<p>Created by <a href="https://github.com/jwstegemann/fritz2">jwstegemann & jamowei</a></p>

www/src/blog/posts/paradigm-shift-for-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ In addition, one would still have to style each building block accordingly withi
263263
and fully functional surface unit, which was omitted here for reasons of space and simplicity. In principle, one injects
264264
the styling into the function block as the first parameter, analogous to the known tag factory functions. The source
265265
code of
266-
the [example for a RadioGroup](https://github.com/jwstegemann/fritz2/blob/master/headless-demo/src/jsMain/kotlin/dev/fritz2/headlessdemo/radioGroup.kt)
266+
the [example for a RadioGroup](https://github.com/jwstegemann/fritz2/blob/master/headless-demo/src/jsMain/kotlin/dev/fritz2/headlessdemo/components/RadioGroup.kt)
267267
from the `headless-demo` project clearly shows that the styling specifications make the whole thing only slightly more
268268
complex.
269269

www/src/pages/docs/45_EventHandling.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ eleventyNavigation:
1414

1515
In fritz2, all HTML-Events are either encapsulated within a `Tag`-scope or within the special `Window`-object, which both
1616
offer access to all global events. A complete list can be found in the
17-
[events.kt](https://github.com/jwstegemann/fritz2/blob/master/core/src/jsMain/kotlin/dev/fritz2/core/events.kt) file.
17+
[Events.kt](https://github.com/jwstegemann/fritz2/blob/master/core/src/jsMain/kotlin/dev/fritz2/core/Events.kt) file.
1818

1919
The most important aspect to understand is that an event in fritz2 is just a type derived by `Flow`. You can
2020
use all events as the source of an action which should be handled by a handler-function.
@@ -452,4 +452,4 @@ div {
452452
// based upon any other `Flow`-source`
453453
}
454454
}
455-
```
455+
```

0 commit comments

Comments
 (0)