blob: d4f981be58f5f720694525bec0049c0fdc70b3d6 (
plain)
1
2
3
4
5
6
7
8
9
|
(function() {
const el = document.getElementById('fortune-quote');
if (!el) return;
const quotes = JSON.parse(el.dataset.quotes);
if (!quotes || quotes.length === 0) return;
const q = quotes[Math.floor(Math.random() * quotes.length)];
el.querySelector('.fortune-text').textContent = '"' + q.text + '"';
el.querySelector('.fortune-author').textContent = '— ' + q.author;
})();
|