Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/demo/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,12 @@ function gtag() {

<label for="theme">Theme</label>
<select class="param" id="theme" name="theme">
<?php foreach ($THEMES as $theme => $options): ?>
<?php

//Added sort in alphabetical order
ksort($THEMES, SORT_NATURAL | SORT_FLAG_CASE);

foreach ($THEMES as $theme => $options): ?>
<?php
$dataAttrs = "";
foreach ($options as $key => $value) {
Expand Down