@aurodesignsystem/auro-hyperlink
Version:
auro-hyperlink HTML custom element
19 lines (15 loc) • 439 B
JavaScript
import { AuroHyperlink } from '../src/auro-hyperlink.js';
AuroHyperlink.register();
function initHyperlinkApiExamples(initCount) {
initCount = initCount || 0;
try {
} catch {
if (initCount <= 20) {
// setTimeout handles issue where content is sometimes loaded after the functions get called
setTimeout(() => {
initHyperlinkApiExamples(initCount + 1);
}, 100);
}
}
}
initHyperlinkApiExamples();