Skip to content

Commit

Permalink
Remove left-over prevent (from when it was a link).
Browse files Browse the repository at this point in the history
  • Loading branch information
bennadel committed Mar 23, 2024
1 parent b577a8f commit 77b0cb6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions demos/calendar-alpinejs/index.htm
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@ <h1>

<p class="jumper">
<strong>Jump to:</strong>
<button @click.prevent="resetCalendar">Now</button>
<button @click.prevent="jumpToYear( 2023 )">2023</button>
<button @click.prevent="jumpToYear( 2024 )">2024</button>
<button @click.prevent="jumpToYear( 2025 )">2025</button>
<button @click.prevent="jumpToYear( 2026 )">2026</button>
<button @click.prevent="jumpToYear( 2027 )">2027</button>
<button @click="resetCalendar">Now</button>
<button @click="jumpToYear( 2023 )">2023</button>
<button @click="jumpToYear( 2024 )">2024</button>
<button @click="jumpToYear( 2025 )">2025</button>
<button @click="jumpToYear( 2026 )">2026</button>
<button @click="jumpToYear( 2027 )">2027</button>
</p>

<script type="text/javascript" src="./alpine.calendar.js" defer></script>
Expand Down

0 comments on commit 77b0cb6

Please sign in to comment.