-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
40 lines (19 loc) · 966 Bytes
/
app.js
File metadata and controls
40 lines (19 loc) · 966 Bytes
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
(function($){
$(function(){
$(document).foundationMediaQueryViewer();
$(document).foundationAlerts();
$(document).foundationAccordion();
$(document).tooltips();
$('input, textarea').placeholder();
$(document).foundationButtons();
$(document).foundationNavigation();
$(document).foundationCustomForms();
$(document).foundationTabs({callback:$.foundation.customForms.appendCustomMarkup});
$("#featured").orbit();
// UNCOMMENT THE LINE YOU WANT BELOW IF YOU WANT IE8 SUPPORT AND ARE USING .block-grids
// $('.block-grid.two-up>li:nth-child(2n+1)').css({clear: 'left'});
// $('.block-grid.three-up>li:nth-child(3n+1)').css({clear: 'left'});
// $('.block-grid.four-up>li:nth-child(4n+1)').css({clear: 'left'});
// $('.block-grid.five-up>li:nth-child(5n+1)').css({clear: 'left'});
});
})(jQuery);