openwrt-one: Avoid page scroll when clicking a thumbnail

This commit is contained in:
Ben Sturmfels 2025-03-05 12:28:36 +11:00
parent 2d0cc8abe8
commit 9a7ab2b0de
Signed by: bsturmfels
GPG key ID: 023C05E2C9C068F0

View file

@ -32,7 +32,7 @@
<img x-bind:src="selected_image" src="{% static "img/projects/openwrt/banana_pi_openwrt_one_case_5.jpg" %}">
<div class="flex flex-row flex-wrap">
<template x-for="image in images" :key="image">
<a href="#" x-on:click="selected_image = image; console.log(image)"> <img x-bind:src="image" alt="Thumbnail" class="w4"></a>
<a href="#" x-on:click.prevent="selected_image = image"> <img x-bind:src="image" alt="Thumbnail" class="w4"></a>
<pre x-text="selected_image">foo</pre>
</template>
</div>