/* To avoid CSS expressions while still supporting IE 7 and IE 6, use this script */
/* The script tag referencing this file must be placed before the ending body tag. */
/* Use conditional comments in order to target IE 7 and older:
<!--[if lt IE 8]><!-->
<script src="ie7/ie7.js"></script>
<!--<![endif]-->
*/
(function() {
function addIcon(el, entity) {
var html = el.innerHTML;
el.innerHTML = '<span style="font-family: \'tlcd96\'">' + entity + '</span>' + html;
}
var icons = {
'tlcd96-fonts-apocalipse': '',
'tlcd96-fonts-light-dark': '',
'tlcd96-fonts-checkmark': '',
'tlcd96-fonts-check': '',
'tlcd96-fonts-chevron-down': '',
'tlcd96-fonts-chevron-down-left': '',
'tlcd96-fonts-chevron-down-right': '',
'tlcd96-fonts-chevron-left': '',
'tlcd96-fonts-chevron-right': '',
'tlcd96-fonts-chevron-up': '',
'tlcd96-fonts-chevron-up-left': '',
'tlcd96-fonts-chevron-up-right': '',
'tlcd96-fonts-clipboard': '',
'tlcd96-fonts-cog': '',
'tlcd96-fonts-settings': '',
'tlcd96-fonts-context': '',
'tlcd96-fonts-copy': '',
'tlcd96-fonts-expand': '',
'tlcd96-fonts-moon': '',
'tlcd96-fonts-dark': '',
'tlcd96-fonts-dark-mode': '',
'tlcd96-fonts-darkmode': '',
'tlcd96-fonts-paste': '',
'tlcd96-fonts-share': '',
'tlcd96-fonts-social-crowdin': '',
'tlcd96-fonts-social-discord': '',
'tlcd96-fonts-social-discord-server': '',
'tlcd96-fonts-social-discord-user': '',
'tlcd96-fonts-social-facebook': '',
'tlcd96-fonts-social-instagram': '',
'tlcd96-fonts-social-oneux': '',
'tlcd96-fonts-social-twitter': '',
'tlcd96-fonts-social-x': '',
'tlcd96-fonts-social-youtube': '',
'tlcd96-fonts-social-youtube-user': '',
'tlcd96-fonts-software': '',
'tlcd96-fonts-program': '',
'tlcd96-fonts-stack': '',
'tlcd96-fonts-sun': '',
'tlcd96-fonts-light': '',
'tlcd96-fonts-light-mode': '',
'tlcd96-fonts-lightmode': '',
'tlcd96-fonts-times': '',
'tlcd96-fonts-close': '',
'tlcd96-fonts-x': '',
'0': 0
},
els = document.getElementsByTagName('*'),
i, c, el;
for (i = 0; ; i += 1) {
el = els[i];
if(!el) {
break;
}
c = el.className;
c = c.match(/tlcd96-fonts-[^\s'"]+/);
if (c && icons[c[0]]) {
addIcon(el, icons[c[0]]);
}
}
}());