webfont.js
1.14 KB
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
// webfont.js
WebFontConfig = {
classes: false,
fontactive: function() {
$('.avoid-fout').each(function(index) {
$(this).addClass('avoid-fout-done');
});
// fixed left/right hand side column padding bottom and width
contentFixPushCal();
// footer push
footerPush();
// header height
headerHeightCal();
// tile wrap animation
tileInView();
},
fontinactive: function() {
$('.avoid-fout').each(function(index) {
$(this).addClass('avoid-fout-done');
});
// fixed left/right hand side column padding bottom and width
contentFixPushCal();
// footer push
footerPush();
// header height
headerHeightCal();
// tile wrap animation
tileInView();
},
google: {
families: ['Roboto:300,300italic,400,400italic,700,700italic']
}
};
(function() {
var wf = document.createElement('script');
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') + '://ajax.googleapis.com/ajax/libs/webfont/1.5.10/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})();