-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
68 lines (42 loc) · 1.45 KB
/
app.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
// executes when complete page is fully loaded, including all frames, objects and images
$(window).load(function() {
});
// DOM is ready
$(document).ready(function () {
$(document).foundation();
/* Mobile navigation
-------------------------------------------------*/
$("#openNavigation").on("click", function (e) {
e.preventDefault();
$(".navigation").toggleClass("open");
});
/* Modernizr
-------------------------------------------------*/
// Hide address bar on mobile devices (except if #hash present, so we don't mess up deep linking).
if (Modernizr.touch && !window.location.hash) {
$(window).load(function () {
setTimeout(function () {
window.scrollTo(0, 1);
}, 0);
});
}
if (!Modernizr.backgroundsize) {
}
if (!Modernizr.svg) {
$('img[src*="svg"]').attr('src', function () {
return $(this).attr('src').replace('.svg', '.png');
});
}
/* Flex Slider
-------------------------------------------------*/
if($('.flexslider').length) {
$('.flexslider').flexslider({
animation: "fade"
});
}
/* PrettyPhoto
-------------------------------------------------*/
if($("a[rel^='prettyPhoto']").length){
$("a[rel^='prettyPhoto']").prettyPhoto({ animationSpeed: 'slow', slideshow: false, overlay_gallery: false, social_tools: false, deeplinking: false });
}
});