cuiqian2004
2025-03-03 b0041cf10ba3ddf74b9edcfd340a7d1c9179d878
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
/* 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: \'mobox-org\'">' + entity + '</span>' + html;
    }
    var icons = {
        'mobox-org-user-manage': '&#xe914;',
        'mobox-org-org_struct': '&#xe915;',
        'mobox-org-address-book2': '&#xe900;',
        'mobox-org-add-user': '&#xe901;',
        'mobox-org-company': '&#xe902;',
        'mobox-org-del-user1': '&#xe903;',
        'mobox-org-department': '&#xe904;',
        'mobox-org-depart-user': '&#xe905;',
        'mobox-org-manger': '&#xe906;',
        'mobox-org-meeting': '&#xe907;',
        'mobox-org-meeting2': '&#xe908;',
        'mobox-org-meeting-room': '&#xe909;',
        'mobox-org-member': '&#xe90a;',
        'mobox-org-my-collection': '&#xe90b;',
        'mobox-org-person': '&#xe90c;',
        'mobox-org-select-user': '&#xe90d;',
        'mobox-org-user': '&#xe90e;',
        'mobox-org-user-group': '&#xe90f;',
        'mobox-org-user-group-info': '&#xe910;',
        'mobox-org-user-info': '&#xe911;',
        'mobox-org-user-info2': '&#xe912;',
        'mobox-org-users': '&#xe913;',
        '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(/mobox-org-[^\s'"]+/);
        if (c && icons[c[0]]) {
            addIcon(el, icons[c[0]]);
        }
    }
}());