docs: update 7gui example links (#6052)

pull/6056/head
Geoff Rich 4 years ago committed by GitHub
parent c56653dfd6
commit ce3a579125
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,7 +1,7 @@
<!-- https://eugenkiss.github.io/7guis/tasks#counter -->
<script>
let count = 0;
</script>
<!-- https://github.com/eugenkiss/7guis/wiki#counter -->
<input type=number bind:value={count}>
<button on:click="{() => count += 1}">count</button>

@ -1,4 +1,4 @@
<!-- https://github.com/eugenkiss/7guis/wiki#temperature-converter -->
<!-- https://eugenkiss.github.io/7guis/tasks/#temp -->
<input value={c} on:input="{e => setBothFromC(e.target.value)}" type=number> °c =
<input value={f} on:input="{e => setBothFromF(e.target.value)}" type=number> °f

@ -1,3 +1,4 @@
<!-- https://eugenkiss.github.io/7guis/tasks/#flight -->
<script>
const tomorrow = new Date(Date.now() + 86400000);
@ -44,7 +45,6 @@
}
</style>
<!-- https://github.com/eugenkiss/7guis/wiki#flight-booker -->
<select bind:value={isReturn}>
<option value={false}>one-way flight</option>
<option value={true}>return flight</option>

Loading…
Cancel
Save