Llewellyn van der Merwe
d9f5a1aebc
- Add modal implementation with automatic detection for four specific libraries. - Introduce inline tooltips with library compatibility. - Implement a default stand-alone fallback for environments without supported libraries.
30 lines
937 B
HTML
30 lines
937 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Basic GetBible Test</title>
|
|
|
|
<!-- getBible JS -->
|
|
<script src="../dist/js/getBible.js"></script>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Scripture References</h1>
|
|
|
|
<p>Hover over the references to see the scripture text:</p>
|
|
|
|
<ul>
|
|
<li class="getBible" data-translation="kjv;aov" data-show-translation="1" data-show-language="1"
|
|
data-format="tooltip">John 3:16,19
|
|
</li>
|
|
<li class="getBible" data-show-abbreviation="1" data-format="modal">John 3:16-17; 1 John 3:16-19,22</li>
|
|
<li class="getBible" data-translation="kjv;codex" data-show-language="1" data-format="modal">Genesis 1:1</li>
|
|
<li class="getBible" data-translation="kjv;codex" data-show-language="1" data-format="inline">Psalms 23:1-4</li>
|
|
<li class="getBible">Romans 8:28,31-39</li>
|
|
</ul>
|
|
|
|
</body>
|
|
</html>
|