diff options
Diffstat (limited to 'layouts/shortcodes/tabs.html')
-rw-r--r-- | layouts/shortcodes/tabs.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/shortcodes/tabs.html b/layouts/shortcodes/tabs.html index c49b141..9431af5 100644 --- a/layouts/shortcodes/tabs.html +++ b/layouts/shortcodes/tabs.html @@ -4,7 +4,7 @@ <div class="book-tabs"> {{ range $index, $tab := .Scratch.Get $group }} - <input type="radio" class="book-tabs-radio" name="{{ $group }}" id="{{ printf "%s-%d" $group $index }}" {{ if not $index }}checked="checked"{{ end }} /> + <input type="radio" class="hidden" name="{{ $group }}" id="{{ printf "%s-%d" $group $index }}" {{ if not $index }}checked="checked"{{ end }} /> <label for="{{ printf "%s-%d" $group $index }}"> {{ $tab.Name }} </label> |