| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /* Load this script using conditional IE comments if you need to support IE 7 and IE 6. */
- window.onload = function() {
- function addIcon(el, entity) {
- var html = el.innerHTML;
- el.innerHTML = '<span style="font-family: \'Flat-UI-Icons\'">' + entity + '</span>' + html;
- }
- var icons = {
- 'fui-arrow-right' : '',
- 'fui-arrow-left' : '',
- 'fui-cmd' : '',
- 'fui-check-inverted' : '',
- 'fui-heart' : '',
- 'fui-location' : '',
- 'fui-plus' : '',
- 'fui-check' : '',
- 'fui-cross' : '',
- 'fui-list' : '',
- 'fui-new' : '',
- 'fui-video' : '',
- 'fui-photo' : '',
- 'fui-volume' : '',
- 'fui-time' : '',
- 'fui-eye' : '',
- 'fui-chat' : '',
- 'fui-search' : '',
- 'fui-user' : '',
- 'fui-mail' : '',
- 'fui-lock' : '',
- 'fui-gear' : '',
- 'fui-radio-unchecked' : '',
- 'fui-radio-checked' : '',
- 'fui-checkbox-unchecked' : '',
- 'fui-checkbox-checked' : '',
- 'fui-calendar-solid' : '',
- 'fui-pause' : '',
- 'fui-play' : '',
- 'fui-check-inverted-2' : ''
- },
- els = document.getElementsByTagName('*'),
- i, attr, html, c, el;
- for (i = 0; ; i += 1) {
- el = els[i];
- if(!el) {
- break;
- }
- attr = el.getAttribute('data-icon');
- if (attr) {
- addIcon(el, attr);
- }
- c = el.className;
- c = c.match(/fui-[^\s'"]+/);
- if (c && icons[c[0]]) {
- addIcon(el, icons[c[0]]);
- }
- }
- };
|