-
Notifications
You must be signed in to change notification settings - Fork 0
/
lte-ie7.js
72 lines (71 loc) · 1.88 KB
/
lte-ie7.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/* Use this script 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: \'linecons\'">' + entity + '</span>' + html;
}
var icons = {
'li_heart' : '',
'li_cloud' : '',
'li_star' : '',
'li_tv' : '',
'li_sound' : '',
'li_video' : '',
'li_trash' : '',
'li_user' : '',
'li_key' : '',
'li_search' : '',
'li_settings' : '',
'li_camera' : '',
'li_tag' : '',
'li_lock' : '',
'li_bulb' : '',
'li_pen' : '',
'li_diamond' : '',
'li_display' : '',
'li_location' : '',
'li_eye' : '',
'li_bubble' : '',
'li_stack' : '',
'li_cup' : '',
'li_phone' : '',
'li_news' : '',
'li_mail' : '',
'li_like' : '',
'li_photo' : '',
'li_note' : '',
'li_clock' : '',
'li_paperplane' : '',
'li_params' : '',
'li_banknote' : '',
'li_data' : '',
'li_music' : '',
'li_megaphone' : '',
'li_study' : '',
'li_lab' : '',
'li_food' : '',
'li_t-shirt' : '',
'li_fire' : '',
'li_clip' : '',
'li_shop' : '',
'li_calendar' : '',
'li_vallet' : '',
'li_vynil' : '',
'li_truck' : '',
'li_world' : ''
},
els = document.getElementsByTagName('*'),
i, attr, html, c, el;
for (i = 0; i < els.length; i += 1) {
el = els[i];
attr = el.getAttribute('data-icon');
if (attr) {
addIcon(el, attr);
}
c = el.className;
c = c.match(/li_[^\s'"]+/);
if (c && icons[c[0]]) {
addIcon(el, icons[c[0]]);
}
}
};