cuiqian2004
2025-03-20 d8872903e30f0a53abefcd279ae03258341e931f
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/* 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-dms\'">' + entity + '</span>' + html;
    }
    var icons = {
        'mobox-dms-add-file': '&#xe900;',
        'mobox-dms-add-floder': '&#xe901;',
        'mobox-dms-book': '&#xe902;',
        'mobox-dms-book2': '&#xe903;',
        'mobox-dms-books': '&#xe904;',
        'mobox-dms-box-file': '&#xe905;',
        'mobox-dms-box-file2': '&#xe906;',
        'mobox-dms-cabinet': '&#xe907;',
        'mobox-dms-cabinet2': '&#xe908;',
        'mobox-dms-cabinet3': '&#xe909;',
        'mobox-dms-cloud-download': '&#xe90a;',
        'mobox-dms-collection': '&#xe90b;',
        'mobox-dms-collection2': '&#xe90c;',
        'mobox-dms-collection-add': '&#xe90d;',
        'mobox-dms-collection-del': '&#xe90e;',
        'mobox-dms-contract': '&#xe90f;',
        'mobox-dms-copy': '&#xe910;',
        'mobox-dms-desc': '&#xe911;',
        'mobox-dms-disk': '&#xe912;',
        'mobox-dms-disk2': '&#xe913;',
        'mobox-dms-excel-2': '&#xe914;',
        'mobox-dms-export': '&#xe915;',
        'mobox-dms-file2': '&#xe916;',
        'mobox-dms-file-box2': '&#xe917;',
        'mobox-dms-file-music': '&#xe918;',
        'mobox-dms-file-ok': '&#xe919;',
        'mobox-dms-file-picture': '&#xe91a;',
        'mobox-dms-file-play2': '&#xe91b;',
        'mobox-dms-files': '&#xe91c;',
        'mobox-dms-files2': '&#xe91d;',
        'mobox-dms-file-trans': '&#xe91e;',
        'mobox-dms-File-view': '&#xe91f;',
        'mobox-dms-floder': '&#xe920;',
        'mobox-dms-folder': '&#xe921;',
        'mobox-dms-folder2': '&#xe922;',
        'mobox-dms-folder-multiple': '&#xe923;',
        'mobox-dms-folderopen': '&#xe924;',
        'mobox-dms-folders': '&#xe925;',
        'mobox-dms-folders-close': '&#xe926;',
        'mobox-dms-folder-set': '&#xe927;',
        'mobox-dms-folders-open': '&#xe928;',
        'mobox-dms-import': '&#xe929;',
        'mobox-dms-inbox': '&#xe92a;',
        'mobox-dms-mail': '&#xe92b;',
        'mobox-dms-mail-add': '&#xe92c;',
        'mobox-dms-mail-del': '&#xe92d;',
        'mobox-dms-mail-open': '&#xe92e;',
        'mobox-dms-mail-open2': '&#xe92f;',
        'mobox-dms-mail-send': '&#xe930;',
        'mobox-dms-outbox': '&#xe931;',
        'mobox-dms-paper-clip': '&#xe932;',
        'mobox-dms-paste': '&#xe933;',
        'mobox-dms-printe': '&#xe934;',
        'mobox-dms-seal': '&#xe935;',
        'mobox-dms-seal2': '&#xe936;',
        'mobox-dms-share': '&#xe937;',
        'mobox-dms-stamp': '&#xe938;',
        'mobox-dms-sys-log': '&#xe939;',
        'mobox-dms-task2': '&#xe93a;',
        '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-dms-[^\s'"]+/);
        if (c && icons[c[0]]) {
            addIcon(el, icons[c[0]]);
        }
    }
}());