mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-09-28 21:41:40 +00:00
17 lines
647 B
HTML
17 lines
647 B
HTML
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="htmx-config" content='{"includeIndicatorStyles":false}'>
|
|
<title>Test if the includeIndicatorStyles meta option works</title>
|
|
<script src="../../src/htmx.js"></script>
|
|
</head>
|
|
<body style="padding:20px;font-family: sans-serif">
|
|
<h1>You should see bars here:</h1>
|
|
<p>
|
|
We are overriding the normal CSS inclusion with the meta directive <code>{"includeIndicatorStyles":false}</code>
|
|
so you should see the indicator because it is not being hidden by the default classes.
|
|
</p>
|
|
<img class="htmx-indicator" src="../img/bars.svg" width="200">
|
|
</body>
|
|
</html>
|