Skip to content

Commit

Permalink
wip(example): fix event subscription + nicer ui
Browse files Browse the repository at this point in the history
  • Loading branch information
relu91 committed May 19, 2023
1 parent bba1262 commit d8a7bd1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/browser/counter.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
<style>
@keyframes blink {
50% {
opacity: 0.0;
opacity: 0;
}
100% {
opacity: 1.0;
opacity: 1;
}
}
.blink {
animation: blink 0.5s step-start 0s 1;
animation: blink 0.5s step-start 0s 1;
}

.hidden {
Expand Down Expand Up @@ -68,7 +68,7 @@ <h1>Counter Client Example in the Browser</h1>
<div id="event-display" class="hidden">
<p>Event count: <span id="event-count"></span></p>
<p>Last payload: <span id="event-payload"></span></p>
<div>
</div>
</figure>
</div>
</div>
Expand Down

0 comments on commit d8a7bd1

Please sign in to comment.