mirror of
https://github.com/iptv-org/epg
synced 2025-12-18 03:16:53 -05:00
Update index.html
This commit is contained in:
@@ -77,14 +77,14 @@
|
|||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="card-header is-shadowless is-clickable"
|
class="card-header is-shadowless is-clickable"
|
||||||
@click="country.show = !country.show"
|
@click="country.expanded = !country.expanded"
|
||||||
>
|
>
|
||||||
<span class="card-header-title" x-text="`${country.flag} ${country.name}`"></span>
|
<span class="card-header-title" x-text="`${country.flag} ${country.name}`"></span>
|
||||||
<button class="card-header-icon" aria-label="more options">
|
<button class="card-header-icon" aria-label="more options">
|
||||||
<span class="icon">
|
<span class="icon">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" class="ionicon" viewBox="0 0 512 512">
|
<svg xmlns="http://www.w3.org/2000/svg" class="ionicon" viewBox="0 0 512 512">
|
||||||
<path
|
<path
|
||||||
x-show="!country.show"
|
x-show="!country.expanded"
|
||||||
fill="none"
|
fill="none"
|
||||||
stroke="currentColor"
|
stroke="currentColor"
|
||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
@@ -93,7 +93,7 @@
|
|||||||
d="M112 184l144 144 144-144"
|
d="M112 184l144 144 144-144"
|
||||||
/>
|
/>
|
||||||
<path
|
<path
|
||||||
x-show="country.show"
|
x-show="country.expanded"
|
||||||
fill="none"
|
fill="none"
|
||||||
stroke="currentColor"
|
stroke="currentColor"
|
||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
@@ -107,7 +107,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="card-content"
|
class="card-content"
|
||||||
x-show="country.show || (countryChannels.length && _query.length)"
|
x-show="country.expanded || (countryChannels.length && _query.length)"
|
||||||
>
|
>
|
||||||
<div class="table-container">
|
<div class="table-container">
|
||||||
<table class="table is-fullwidth">
|
<table class="table is-fullwidth">
|
||||||
|
|||||||
Reference in New Issue
Block a user