custom.js
49.2 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
(function($){
window.et_calculating_scroll_position = false;
window.et_side_nav_links_initialized = false;
var $et_pb_post_fullwidth = $( '.single.et_pb_pagebuilder_layout.et_full_width_page' ),
et_is_mobile_device = navigator.userAgent.match( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/ ),
et_is_ipad = navigator.userAgent.match( /iPad/ ),
$et_container = $( '.container' ),
et_container_width = $et_container.width(),
et_is_fixed_nav = $( 'body' ).hasClass( 'et_fixed_nav' ),
et_is_vertical_fixed_nav = $( 'body' ).hasClass( 'et_vertical_fixed' ),
et_is_rtl = $( 'body' ).hasClass( 'rtl' ),
et_hide_nav = $( 'body' ).hasClass( 'et_hide_nav' ),
et_header_style_left = $( 'body' ).hasClass( 'et_header_style_left' ),
$top_header = $('#top-header'),
$main_header = $('#main-header'),
$main_container_wrapper = $( '#page-container' ),
$et_main_content_first_row = $( '#main-content .container:first-child' ),
$et_main_content_first_row_meta_wrapper = $et_main_content_first_row.find('.et_post_meta_wrapper:first'),
$et_main_content_first_row_meta_wrapper_title = $et_main_content_first_row_meta_wrapper.find( 'h1.entry-title' ),
$et_main_content_first_row_content = $et_main_content_first_row.find('.entry-content:first'),
$et_single_post = $( 'body.single-post' ),
$et_window = $(window),
etRecalculateOffset = false,
et_header_height,
et_header_modifier,
et_header_offset,
et_primary_header_top,
$et_header_style_split = $('.et_header_style_split'),
$et_top_navigation = $('#et-top-navigation'),
$logo = $('#logo'),
$et_pb_first_row = $( 'body.et_pb_pagebuilder_layout .et_pb_section:first-child' ),
et_is_touch_device = 'ontouchstart' in window || navigator.maxTouchPoints;
$(document).ready( function(){
var $et_top_menu = $( 'ul.nav' ),
$et_search_icon = $( '#et_search_icon' ),
et_parent_menu_longpress_limit = 300,
et_parent_menu_longpress_start,
et_parent_menu_click = true;
$et_top_menu.find( 'li' ).hover( function() {
if ( ! $(this).closest( 'li.mega-menu' ).length || $(this).hasClass( 'mega-menu' ) ) {
$(this).addClass( 'et-show-dropdown' );
$(this).removeClass( 'et-hover' ).addClass( 'et-hover' );
}
}, function() {
var $this_el = $(this);
$this_el.removeClass( 'et-show-dropdown' );
setTimeout( function() {
if ( ! $this_el.hasClass( 'et-show-dropdown' ) ) {
$this_el.removeClass( 'et-hover' );
}
}, 200 );
} );
// Dropdown menu adjustment for touch screen
$et_top_menu.find( '.menu-item-has-children > a' ).on( 'touchend', function(){
var $et_parent_menu = $( this ).parent( 'li' );
// open submenu on 1st tap
// open link on second tap
if ( $et_parent_menu.hasClass( 'et-hover' ) ) {
window.location = $( this ).attr( 'href' );
} else {
$et_parent_menu.trigger( 'mouseenter' );
}
} );
$et_top_menu.find( 'li.mega-menu' ).each(function(){
var $li_mega_menu = $(this),
$li_mega_menu_item = $li_mega_menu.children( 'ul' ).children( 'li' ),
li_mega_menu_item_count = $li_mega_menu_item.length;
if ( li_mega_menu_item_count < 4 ) {
$li_mega_menu.addClass( 'mega-menu-parent mega-menu-parent-' + li_mega_menu_item_count );
}
});
function et_header_menu_split(){
var $logo_container = $( '#main-header > .container > .logo_container' ),
$logo_container_splitted = $('.centered-inline-logo-wrap > .logo_container'),
et_top_navigation_li_size = $et_top_navigation.children('nav').children('ul').children('li').size(),
et_top_navigation_li_break_index = Math.round( et_top_navigation_li_size / 2 ) - 1,
window_width = $et_window.prop('outerWidth') || $et_window.width();
if ( window_width > 980 && $logo_container.length ) {
$('<li class="centered-inline-logo-wrap"></li>').insertAfter($et_top_navigation.find('nav > ul >li:nth('+et_top_navigation_li_break_index+')') );
$logo_container.appendTo( $et_top_navigation.find('.centered-inline-logo-wrap') );
}
if ( window_width <= 980 && $logo_container_splitted.length ) {
$logo_container_splitted.prependTo('#main-header > .container');
$('#main-header .centered-inline-logo-wrap').remove();
}
}
if ( $et_header_style_split.length && ! window.et_is_vertical_nav ) {
et_header_menu_split();
$(window).resize(function(){
et_header_menu_split();
});
}
if ( $('ul.et_disable_top_tier').length ) {
$("ul.et_disable_top_tier > li > ul").prev('a').attr('href','#');
}
if ( window.et_is_vertical_nav ) {
if ( $( '#main-header' ).height() < $( '#et-top-navigation' ).height() ) {
$( '#main-header' ).height( $( '#et-top-navigation' ).height() + $( '#logo' ).height() + 100 );
}
}
window.et_calculate_header_values = function() {
var $top_header = $( '#top-header' ),
secondary_nav_height = $top_header.length && $top_header.is( ':visible' ) ? parseInt( $top_header.innerHeight() ) : 0,
admin_bar_height = $( '#wpadminbar' ).length ? parseInt( $( '#wpadminbar' ).innerHeight() ) : 0,
$slide_menu_container = $( '.et_header_style_slide .et_slide_in_menu_container' );
et_header_height = parseInt( $( '#main-header' ).innerHeight() ) + secondary_nav_height;
et_header_modifier = et_header_height <= 90 ? et_header_height - 29 : et_header_height - 56;
et_header_offset = et_header_modifier + admin_bar_height;
et_primary_header_top = secondary_nav_height + admin_bar_height;
if ( $slide_menu_container.length && ! $( 'body' ).hasClass( 'et_pb_slide_menu_active' ) ) {
$slide_menu_container.css( { right: '-' + parseInt( $slide_menu_container.innerWidth() ) + 'px', 'display' : 'none' } );
if ( $( 'body' ).hasClass( 'et_boxed_layout' ) ) {
var page_container_margin = $main_container_wrapper.css( 'margin-left' );
$main_header.css( { left : page_container_margin } );
}
}
};
var $comment_form = $('#commentform');
et_pb_form_placeholders_init( $comment_form );
$comment_form.submit(function(){
et_pb_remove_placeholder_text( $comment_form );
});
et_duplicate_menu( $('#et-top-navigation ul.nav'), $('#et-top-navigation .mobile_nav'), 'mobile_menu', 'et_mobile_menu' );
et_duplicate_menu( '', $('.et_pb_fullscreen_nav_container'), 'mobile_menu_slide', 'et_mobile_menu', 'no_click_event' );
if ( $( '#et-secondary-nav' ).length ) {
$('#et-top-navigation #mobile_menu').append( $( '#et-secondary-nav' ).clone().html() );
}
// adding arrows for the slide/fullscreen menus
if ( $( '.et_slide_in_menu_container' ).length ) {
var $item_with_sub = $( '.et_slide_in_menu_container' ).find( '.menu-item-has-children > a' );
// add arrows for each menu item which has submenu
if ( $item_with_sub.length ) {
$item_with_sub.append( '<span class="et_mobile_menu_arrow"></span>' );
}
}
function et_change_primary_nav_position( delay ) {
setTimeout( function() {
var $body = $('body'),
$wpadminbar = $( '#wpadminbar' ),
$top_header = $( '#top-header' ),
et_primary_header_top = 0;
if ( $wpadminbar.length ) {
et_primary_header_top += $wpadminbar.innerHeight();
}
if ( $top_header.length && $top_header.is(':visible') ) {
et_primary_header_top += $top_header.innerHeight();
}
if ( ! window.et_is_vertical_nav && ( $body.hasClass( 'et_fixed_nav' ) ) ) {
$('#main-header').css( 'top', et_primary_header_top );
}
}, delay );
}
function et_hide_nav_transofrm( ) {
var $body = $( 'body' ),
$body_height = $( document ).height(),
$viewport_height = $( window ).height() + et_header_height + 200;
if ( $body.hasClass( 'et_hide_nav' ) || $body.hasClass( 'et_hide_nav_disabled' ) && ( $body.hasClass( 'et_fixed_nav' ) ) ) {
if ( $body_height > $viewport_height ) {
if ( $body.hasClass( 'et_hide_nav_disabled' ) ) {
$body.addClass( 'et_hide_nav' );
$body.removeClass( 'et_hide_nav_disabled' );
}
$('#main-header').css( 'transform', 'translateY(-' + et_header_height +'px)' );
$('#top-header').css( 'transform', 'translateY(-' + et_header_height +'px)' );
} else {
$('#main-header').css( { 'transform': 'translateY(0)', 'opacity': '1' } );
$('#top-header').css( { 'transform': 'translateY(0)', 'opacity': '1' } );
$body.removeClass( 'et_hide_nav' );
$body.addClass( 'et_hide_nav_disabled' );
}
}
}
function et_page_load_scroll_to_anchor() {
var $map_container = $( window.et_location_hash + ' .et_pb_map_container' ),
$map = $map_container.children( '.et_pb_map' ),
$target = $( window.et_location_hash );
// Make the target element visible again
$target.css( 'display', window.et_location_hash_style );
var distance = ( 'undefined' !== typeof( $target.offset().top ) ) ? $target.offset().top : 0,
speed = ( distance > 4000 ) ? 1600 : 800;
if ( $map_container.length ) {
google.maps.event.trigger( $map[0], 'resize' );
}
// Allow the header sizing functions enough time to finish before scrolling the page
setTimeout( function() {
et_pb_smooth_scroll( $target, false, speed, 'swing');
// During the page scroll animation, the header's height might change.
// Do the scroll animation again to ensure its accuracy.
setTimeout( function() {
et_pb_smooth_scroll( $target, false, 150, 'linear' );
}, speed + 25 );
}, 700 );
}
// Retrieving padding/margin value based on formatted saved padding/margin strings
function et_get_saved_padding_margin_value( saved_value, order ) {
if ( typeof saved_value === 'undefined' ) {
return false;
}
var values = saved_value.split('|');
return typeof values[order] !== 'undefined' ? values[order] : false;
}
function et_fix_page_container_position(){
var et_window_width = parseInt( $et_window.width() ),
$top_header = $( '#top-header' ),
secondary_nav_height = $top_header.length && $top_header.is( ':visible' ) ? parseInt( $top_header.innerHeight() ) : 0,
main_header_fixed_height = 0,
header_height;
// Set data-height-onload for header if the page is loaded on large screen
// If the page is loaded from small screen, rely on data-height-onload printed on the markup,
// prevent window resizing issue from small to large
if ( et_window_width > 980 && ! $main_header.attr( 'data-height-loaded' ) ){
$main_header.attr({ 'data-height-onload' : parseInt( $main_header.height() ), 'data-height-loaded' : true });
}
// Use on page load calculation for large screen. Use on the fly calculation for small screen (980px below)
if ( et_window_width <= 980 ) {
header_height = parseInt( $main_header.innerHeight() ) + secondary_nav_height - 1;
// If transparent is detected, #main-content .container's padding-top needs to be added to header_height
// And NOT a pagebuilder page
if ( window.et_is_transparent_nav && ! $et_pb_first_row.length ) {
header_height += 58;
}
} else {
// Get header height from header attribute
header_height = parseInt( $main_header.attr( 'data-height-onload' ) ) + secondary_nav_height;
// Non page builder page needs to be added by #main-content .container's fixed height
if ( window.et_is_transparent_nav && ! window.et_is_vertical_nav && $et_main_content_first_row.length ) {
header_height += 58;
}
// Calculate fixed header height by cloning, emulating, and calculating its height
$main_header.clone().addClass(
'main-header-clone et-fixed-header'
).css({
opacity: 0,
position: 'fixed',
top: 'auto',
right: 0,
bottom: 0,
left: 0
}).appendTo( $('body') );
main_header_fixed_height = $('.main-header-clone').height();
$('.main-header-clone').remove();
}
// Saved fixed main header height calculation
$main_header.attr({
'data-fixed-height-onload': main_header_fixed_height
});
// Specific adjustment required for transparent nav + not vertical nav
if ( window.et_is_transparent_nav && ! window.et_is_vertical_nav ){
// Add class for first row for custom section padding purpose
$et_pb_first_row.addClass( 'et_pb_section_first' );
// List of conditionals
var is_pb = $et_pb_first_row.length,
is_post_pb = is_pb && $et_single_post.length,
is_post_pb_full_layout_has_title = $et_pb_post_fullwidth.length && $et_main_content_first_row_meta_wrapper_title.length,
is_post_pb_full_layout_no_title = $et_pb_post_fullwidth.length && 0 === $et_main_content_first_row_meta_wrapper_title.length,
is_pb_fullwidth_section_first = $et_pb_first_row.is( '.et_pb_fullwidth_section' ),
is_no_pb_mobile = et_window_width <= 980 && $et_main_content_first_row.length;
if ( is_post_pb && ! ( is_post_pb_full_layout_no_title && is_pb_fullwidth_section_first ) ) {
/* Desktop / Mobile + Single Post */
/*
* EXCEPT for fullwidth layout + fullwidth section ( at the first row ).
* It is basically the same as page + fullwidth section with few quirk.
* Instead of duplicating the conditional for each module, it'll be simpler to negate
* fullwidth layout + fullwidth section in is_post_pb and rely it to is_pb_fullwidth_section_first
*/
// Remove main content's inline padding to styling to prevent looping padding-top calculation
$et_main_content_first_row.css({ 'paddingTop' : '' });
if ( et_window_width < 980 ) {
header_height += 40;
}
if ( is_pb_fullwidth_section_first ) {
// If the first section is fullwidth, restore the padding-top modified area at first section
$et_pb_first_row.css({
'paddingTop' : '0'
});
}
if ( is_post_pb_full_layout_has_title ) {
// Add header height to post meta wrapper as padding top
$et_main_content_first_row_meta_wrapper.css({
'paddingTop' : header_height
});
} else if ( is_post_pb_full_layout_no_title ) {
$et_pb_first_row.css({
'paddingTop' : header_height
});
} else {
// Add header height to first row content as padding top
$et_main_content_first_row.css({
'paddingTop' : header_height
});
}
} else if ( is_pb_fullwidth_section_first ){
/* Desktop / Mobile + Pagebuilder + Fullwidth Section */
var $et_pb_first_row_first_module = $et_pb_first_row.children( '.et_pb_module:first' );
// Quirks: If this is post with fullwidth layout + no title + fullwidth section at first row,
// Remove the added height at line 2656
if ( is_post_pb_full_layout_no_title && is_pb_fullwidth_section_first && et_window_width > 980 ) {
header_height = header_height - 58;
}
if ( $et_pb_first_row_first_module.is( '.et_pb_slider' ) ) {
/* Desktop / Mobile + Pagebuilder + Fullwidth slider */
var $et_pb_first_row_first_module_slide_image = $et_pb_first_row_first_module.find( '.et_pb_slide_image' ),
$et_pb_first_row_first_module_slide = $et_pb_first_row_first_module.find( '.et_pb_slide' ),
$et_pb_first_row_first_module_slide_container = $et_pb_first_row_first_module.find( '.et_pb_slide .et_pb_container' ),
et_pb_slide_image_margin_top = 0 - ( parseInt( $et_pb_first_row_first_module_slide_image.height() ) / 2 ),
et_pb_slide_container_height = 0,
$et_pb_first_row_first_module_slider_arrow = $et_pb_first_row_first_module.find( '.et-pb-slider-arrows a'),
et_pb_first_row_slider_arrow_height = $et_pb_first_row_first_module_slider_arrow.height();
// Adding padding top to each slide so the transparency become useful
$et_pb_first_row_first_module_slide.css({
'paddingTop' : header_height
});
// delete container's min-height
$et_pb_first_row_first_module_slide_container.css({
'min-height' : ''
});
// Adjusting slider's image, considering additional top padding of slideshow
$et_pb_first_row_first_module_slide_image.css({
'marginTop' : et_pb_slide_image_margin_top
});
// Adjusting slider's arrow, considering additional top padding of slideshow
$et_pb_first_row_first_module_slider_arrow.css({
'marginTop' : ( ( header_height / 2 ) - ( et_pb_first_row_slider_arrow_height / 2 ) )
});
// Looping the slide and get the highest height of slide
var et_pb_first_row_slide_container_height_new = 0;
$et_pb_first_row_first_module.find( '.et_pb_slide' ).each( function(){
var $et_pb_first_row_first_module_slide_item = $(this),
$et_pb_first_row_first_module_slide_container = $et_pb_first_row_first_module_slide_item.find( '.et_pb_container' );
// Make sure that the slide is visible to calculate correct height
$et_pb_first_row_first_module_slide_item.show();
// Remove existing inline css to make sure that it calculates the height
$et_pb_first_row_first_module_slide_container.css({ 'min-height' : '' });
var et_pb_first_row_slide_container_height = $et_pb_first_row_first_module_slide_container.innerHeight();
if ( et_pb_first_row_slide_container_height_new < et_pb_first_row_slide_container_height ){
et_pb_first_row_slide_container_height_new = et_pb_first_row_slide_container_height;
}
// Hide the slide back if it isn't active slide
if ( $et_pb_first_row_first_module_slide_item.is( ':not(".et-pb-active-slide")' ) ){
$et_pb_first_row_first_module_slide_item.hide();
}
});
// Setting appropriate min-height, considering additional top padding of slideshow
$et_pb_first_row_first_module_slide_container.css({
'min-height' : et_pb_first_row_slide_container_height_new
});
} else if ( $et_pb_first_row_first_module.is( '.et_pb_fullwidth_header' ) ) {
/* Desktop / Mobile + Pagebuilder + Fullwidth header */
// Remove existing inline stylesheet to prevent looping padding
$et_pb_first_row_first_module.removeAttr( 'style' );
// Get paddingTop from stylesheet
var et_pb_first_row_first_module_fullwidth_header_padding_top = parseInt( $et_pb_first_row_first_module.css( 'paddingTop' ) );
// Implement stylesheet's padding-top + header_height
$et_pb_first_row_first_module.css({
'paddingTop' : ( header_height + et_pb_first_row_first_module_fullwidth_header_padding_top )
} );
} else if ( $et_pb_first_row_first_module.is( '.et_pb_fullwidth_portfolio' ) ) {
/* Desktop / Mobile + Pagebuilder + Fullwidth Portfolio */
$et_pb_first_row_first_module.css({ 'paddingTop' : header_height });
} else if ( $et_pb_first_row_first_module.is( '.et_pb_map_container' ) ) {
/* Desktop / Mobile + Pagebuilder + Fullwidth Map */
var $et_pb_first_row_map = $et_pb_first_row_first_module.find( '.et_pb_map' );
// Remove existing inline height to prevent looping height calculation
$et_pb_first_row_map.css({ 'height' : '' });
// Implement map height + header height
$et_pb_first_row_first_module.find('.et_pb_map').css({
'height' : header_height + parseInt( $et_pb_first_row_map.css( 'height' ) )
});
// Adding specific class to mark the map as first row section element
$et_pb_first_row_first_module.addClass( 'et_beneath_transparent_nav' );
} else if ( $et_pb_first_row_first_module.is( '.et_pb_fullwidth_menu' ) ) {
/* Desktop / Mobile + Pagebuilder + Fullwidth Menu */
$et_pb_first_row_first_module.css({ 'marginTop' : header_height });
} else if ( $et_pb_first_row_first_module.is( '.et_pb_fullwidth_code' ) ) {
/* Desktop / Mobile + Pagebuilder + Fullwidth code */
var $et_pb_first_row_first_module_code = $et_pb_first_row_first_module;
$et_pb_first_row_first_module_code.css({ 'paddingTop' : '' });
var et_pb_first_row_first_module_code_padding_top = parseInt( $et_pb_first_row_first_module_code.css( 'paddingTop' ) );
$et_pb_first_row_first_module_code.css({
'paddingTop' : header_height + et_pb_first_row_first_module_code_padding_top
});
} else if ( $et_pb_first_row_first_module.is( '.et_pb_post_title' ) ) {
/* Desktop / Mobile + Pagebuilder + Fullwidth Post Title */
$et_pb_first_row_first_module.css({
'paddingTop' : header_height + 50
});
}
} else if ( is_pb ) {
/* Desktop / Mobile + Pagebuilder + Regular section */
// Remove first row's inline padding top styling to prevent looping padding-top calculation
$et_pb_first_row.css({ 'paddingTop' : '' });
// Get saved custom padding from data-* attributes. Builder automatically adds
// saved custom paddings to data-* attributes on first section
var saved_custom_padding = $et_pb_first_row.attr('data-padding'),
saved_custom_padding_top = et_get_saved_padding_margin_value( saved_custom_padding, 0 ),
saved_custom_padding_tablet = $et_pb_first_row.attr('data-padding-tablet'),
saved_custom_padding_tablet_top = et_get_saved_padding_margin_value( saved_custom_padding_tablet, 0 ),
saved_custom_padding_phone = $et_pb_first_row.attr('data-padding-phone'),
saved_custom_padding_phone_top = et_get_saved_padding_margin_value( saved_custom_padding_phone, 0 ),
applied_saved_custom_padding;
if ( saved_custom_padding_top || saved_custom_padding_tablet_top || saved_custom_padding_phone_top ) {
// Applies padding top to first section to automatically convert saved unit into px
if ( et_window_width > 980 && saved_custom_padding_top ) {
$et_pb_first_row.css({
paddingTop: saved_custom_padding_top
});
} else if ( et_window_width > 767 && saved_custom_padding_tablet_top ) {
$et_pb_first_row.css({
paddingTop: saved_custom_padding_tablet_top
});
} else if ( saved_custom_padding_phone_top ) {
$et_pb_first_row.css({
paddingTop: saved_custom_padding_phone_top
});
}
// Get converted custom padding top value
applied_saved_custom_padding = parseInt( $et_pb_first_row.css( 'paddingTop' ) );
// Implemented saved & converted padding top + header height
$et_pb_first_row.css({
paddingTop: ( header_height + applied_saved_custom_padding )
});
} else {
// Pagebuilder ignores #main-content .container's fixed height and uses its row's padding
// Anticipate the use of custom section padding.
et_pb_first_row_padding_top = header_height + parseInt( $et_pb_first_row.css( 'paddingBottom' ) );
// Implementing padding-top + header_height
$et_pb_first_row.css({
'paddingTop' : et_pb_first_row_padding_top
});
}
} else if ( is_no_pb_mobile ) {
// Mobile + not pagebuilder
$et_main_content_first_row.css({
'paddingTop' : header_height
});
} else {
$('#main-content .container:first-child').css({
'paddingTop' : header_height
});
}
// Set #page-container's padding-top to zero after inline styling first row's content has been added
if ( ! $('#et_fix_page_container_position').length ){
$( '<style />', {
'id' : 'et_fix_page_container_position',
'text' : '#page-container{ padding-top: 0 !important;}'
}).appendTo('head');
}
} else if( et_is_fixed_nav ) {
$main_container_wrapper.css( 'paddingTop', header_height );
}
et_change_primary_nav_position( 0 );
}
// Save container width on page load for reference
$et_container.data( 'previous-width', $et_container.width() );
$( window ).resize( function(){
var window_width = parseInt( $et_window.width() ),
et_container_previous_width = parseInt( $et_container.data('previous-width') ),
et_container_css_width = $et_container.css( 'width' ),
et_container_width_in_pixel = ( typeof et_container_css_width !== 'undefined' ) ? et_container_css_width.substr( -1, 1 ) !== '%' : '',
et_container_actual_width = ( et_container_width_in_pixel ) ? parseInt( $et_container.width() ) : ( ( parseInt( $et_container.width() ) / 100 ) * window_width ), // $et_container.width() doesn't recognize pixel or percentage unit. It's our duty to understand what it returns and convert it properly
containerWidthChanged = et_container_previous_width !== et_container_actual_width,
$slide_menu_container = $( '.et_slide_in_menu_container' ),
page_container_margin;
if ( et_is_fixed_nav && containerWidthChanged ) {
if ( typeof update_page_container_position != 'undefined' ){
clearTimeout( update_page_container_position );
}
var update_page_container_position = setTimeout( function() {
et_fix_page_container_position();
if ( typeof et_fix_fullscreen_section === 'function' ) {
et_fix_fullscreen_section();
}
}, 200 );
// Update container width data for future resizing reference
$et_container.data('previous-width', et_container_actual_width );
}
if ( et_hide_nav ) {
et_hide_nav_transofrm();
}
if ( $( '#wpadminbar' ).length && et_is_fixed_nav && window_width >= 740 && window_width <= 782 ) {
et_calculate_header_values();
et_change_primary_nav_position( 0 );
}
et_set_search_form_css();
if ( $slide_menu_container.length && ! $( 'body' ).hasClass( 'et_pb_slide_menu_active' ) ) {
$slide_menu_container.css( { right: '-' + parseInt( $slide_menu_container.innerWidth() ) + 'px' } );
if ( $( 'body' ).hasClass( 'et_boxed_layout' ) && et_is_fixed_nav ) {
page_container_margin = $main_container_wrapper.css( 'margin-left' );
$main_header.css( { left : page_container_margin } );
}
}
if ( $slide_menu_container.length && $( 'body' ).hasClass( 'et_pb_slide_menu_active' ) ) {
if ( $( 'body' ).hasClass( 'et_boxed_layout' ) ) {
var left_position;
page_container_margin = parseFloat( $main_container_wrapper.css( 'margin-left' ) );
$main_container_wrapper.css( { left: '-' + ( parseInt( $slide_menu_container.innerWidth() ) - page_container_margin ) + 'px' } );
if ( et_is_fixed_nav ) {
left_position = 0 > parseInt( $slide_menu_container.innerWidth() ) - ( page_container_margin * 2 ) ? Math.abs( $slide_menu_container.innerWidth() - ( page_container_margin * 2 ) ) : '-' + ( $slide_menu_container.innerWidth() - ( page_container_margin * 2 ) );
if ( left_position < parseInt( $slide_menu_container.innerWidth() ) ) {
$main_header.css( { left: left_position + 'px' } );
}
}
} else {
$( '#page-container, .et_fixed_nav #main-header' ).css( { left: '-' + parseInt( $slide_menu_container.innerWidth() ) + 'px' } );
}
}
// adjust the padding in fullscreen menu
if ( $slide_menu_container.length && $( 'body' ).hasClass( 'et_header_style_fullscreen' ) ) {
var top_bar_height = parseInt( $slide_menu_container.find( '.et_slide_menu_top' ).innerHeight() );
$slide_menu_container.css( { 'padding-top': top_bar_height + 20 } );
}
} );
$( window ).ready( function(){
if ( $.fn.fitVids ) {
$( '#main-content' ).fitVids( { customSelector: "iframe[src^='http://www.hulu.com'], iframe[src^='http://www.dailymotion.com'], iframe[src^='http://www.funnyordie.com'], iframe[src^='https://embed-ssl.ted.com'], iframe[src^='http://embed.revision3.com'], iframe[src^='https://flickr.com'], iframe[src^='http://blip.tv'], iframe[src^='http://www.collegehumor.com']"} );
}
} );
function et_all_elements_loaded() {
if ( et_is_fixed_nav ) {
et_calculate_header_values();
}
et_fix_page_container_position();
if ( window.hasOwnProperty( 'et_location_hash' ) && '' !== window.et_location_hash ) {
// Handle the page scroll that we prevented earlier in the <head>
et_page_load_scroll_to_anchor();
}
if ( et_header_style_left && !window.et_is_vertical_nav) {
$logo_width = parseInt( $( '#logo' ).width() );
if ( et_is_rtl ) {
$et_top_navigation.css( 'padding-right', $logo_width + 30 );
} else {
$et_top_navigation.css( 'padding-left', $logo_width + 30 );
}
}
if ( $('p.demo_store').length ) {
$('#footer-bottom').css('margin-bottom' , $('p.demo_store').innerHeight());
}
if ( $.fn.waypoint ) {
var $waypoint_selector;
if ( et_is_vertical_fixed_nav ) {
$waypoint_selector = $('#main-content');
$waypoint_selector.waypoint( {
handler : function( direction ) {
et_fix_logo_transition();
if ( direction === 'down' ) {
$('#main-header').addClass( 'et-fixed-header' );
} else {
$('#main-header').removeClass( 'et-fixed-header' );
}
}
} );
}
if ( et_is_fixed_nav ) {
if ( window.et_is_transparent_nav && ! window.et_is_vertical_nav && $et_pb_first_row.length ){
// Fullscreen section at the first row requires specific adjustment
if ( $et_pb_first_row.is( '.et_pb_fullwidth_section' ) ){
$waypoint_selector = $et_pb_first_row.children('.et_pb_module');
} else {
$waypoint_selector = $et_pb_first_row.find('.et_pb_row');
}
} else if ( window.et_is_transparent_nav && ! window.et_is_vertical_nav && $et_main_content_first_row.length ) {
$waypoint_selector = $('#content-area');
} else {
$waypoint_selector = $('#main-content');
}
$waypoint_selector.waypoint( {
offset: function() {
if ( etRecalculateOffset ) {
setTimeout( function() {
et_calculate_header_values();
}, 200 );
etRecalculateOffset = false;
}
if ( et_hide_nav ) {
return et_header_offset - et_header_height - 200;
} else {
// Transparent nav modification: #page-container's offset is set to 0. Modify et_header_offset's according to header height
var waypoint_selector_offset = $waypoint_selector.offset();
if ( waypoint_selector_offset.top < et_header_offset ) {
et_header_offset = 0 - ( et_header_offset - waypoint_selector_offset.top );
}
return et_header_offset;
}
},
handler : function( direction ) {
et_fix_logo_transition();
if ( direction === 'down' ) {
$main_header.addClass( 'et-fixed-header' );
$main_container_wrapper.addClass ( 'et-animated-content' );
$top_header.addClass( 'et-fixed-header' );
if ( ! et_hide_nav && ! window.et_is_transparent_nav && ! $( '.mobile_menu_bar_toggle' ).is(':visible') ) {
var secondary_nav_height = $top_header.length ? parseInt( $top_header.height() ) : 0,
$clone_header,
clone_header_height,
fix_padding;
$clone_header = $main_header.clone().addClass( 'et-fixed-header, et_header_clone' ).css( { 'transition': 'none', 'display' : 'none' } );
clone_header_height = parseInt( $clone_header.prependTo( 'body' ).height() );
// Vertical nav doesn't need #page-container margin-top adjustment
if ( ! window.et_is_vertical_nav ) {
fix_padding = parseInt( $main_container_wrapper.css( 'padding-top' ) ) - clone_header_height - secondary_nav_height + 1 ;
$main_container_wrapper.css( 'margin-top', -fix_padding );
}
$( '.et_header_clone' ).remove();
}
} else {
$main_header.removeClass( 'et-fixed-header' );
$top_header.removeClass( 'et-fixed-header' );
$main_container_wrapper.css( 'margin-top', '-1px' );
}
setTimeout( function() {
et_set_search_form_css();
}, 400 );
}
} );
}
if ( et_hide_nav ) {
et_hide_nav_transofrm();
}
}
}
$( 'a[href*="#"]:not([href="#"])' ).click( function() {
var $this_link = $( this ),
has_closest_smooth_scroll_disabled = $this_link.closest( '.et_smooth_scroll_disabled' ).length,
has_closest_woocommerce_tabs = ( $this_link.closest( '.woocommerce-tabs' ).length && $this_link.closest( '.tabs' ).length ),
has_closest_eab_cal_link = $this_link.closest( '.eab-shortcode_calendar-navigation-link' ).length,
has_acomment_reply = $this_link.hasClass( 'acomment-reply' ),
disable_scroll = has_closest_smooth_scroll_disabled || has_closest_woocommerce_tabs || has_closest_eab_cal_link || has_acomment_reply;
if ( ( location.pathname.replace( /^\//,'' ) == this.pathname.replace( /^\//,'' ) && location.hostname == this.hostname ) && ! disable_scroll ) {
var target = $( this.hash );
target = target.length ? target : $( '[name=' + this.hash.slice(1) +']' );
if ( target.length ) {
et_pb_smooth_scroll( target, false, 800 );
if ( ! $( '#main-header' ).hasClass( 'et-fixed-header' ) && $( 'body' ).hasClass( 'et_fixed_nav' ) && $( window ).width() > 980 ) {
setTimeout(function(){
et_pb_smooth_scroll( target, false, 40, 'linear' );
}, 780 );
}
return false;
}
}
});
window.et_pb_window_side_nav_scroll_init = function() {
if ( true === window.et_calculating_scroll_position || false === window.et_side_nav_links_initialized ) {
return;
}
window.et_calculating_scroll_position = true;
var add_offset = $( 'body' ).hasClass( 'et_fixed_nav' ) ? 20 : -90;
var top_header_height = $( '#top-header' ).length > 0 ? parseInt( $( '#top-header' ).height() ) : 0;
var main_header_height = $( '#main-header' ).length > 0 ? parseInt( $( '#main-header' ).height() ) : 0;
var side_offset;
if ( $( '#wpadminbar' ).length > 0 && parseInt( $( window ).width() ) > 600 ) {
add_offset += parseInt( $( '#wpadminbar' ).outerHeight() );
}
if ( window.et_is_vertical_nav ) {
side_offset = top_header_height + add_offset + 60;
} else {
side_offset = top_header_height + main_header_height + add_offset;
}
var window_height = parseInt( $( window ).height() );
var scroll_position = parseInt( $( window ).scrollTop() );
var document_height = parseInt( $( document ).height() );
var at_bottom_of_page = ( window_height + scroll_position ) === document_height;
var total_links = $( '.side_nav_item a' ).length - 1;
for ( var link = 0; link <= total_links; link++ ) {
var $target_section = $( '.et_pb_section:visible:not(.et_pb_section div)' ).eq( link );
var at_top_of_page = 'undefined' === typeof $target_section.offset();
var current_active = $( '.side_nav_item a.active' ).parent().index();
var next_active = null;
var target_offset = ( false === at_top_of_page ) ? $target_section.offset().top - side_offset : 0;
if ( at_top_of_page ) {
next_active = 0;
} else if ( at_bottom_of_page ) {
next_active = total_links;
} else if ( scroll_position >= target_offset ) {
next_active = link;
}
if ( null !== next_active && next_active !== current_active ) {
$( '.side_nav_item a' ).removeClass( 'active' );
$( 'a#side_nav_item_id_' + next_active ).addClass( 'active' );
}
}
window.et_calculating_scroll_position = false;
};
window.et_pb_side_nav_page_init = function() {
var $sections = $( '.et_pb_section:visible:not(.et_pb_section div)' );
var total_sections = $sections.length;
var side_nav_offset = parseInt( ( total_sections * 20 + 40 ) / 2 );
window.et_side_nav_links_initialized = false;
window.et_calculating_scroll_position = false;
if ( total_sections > 1 && $( '.et_pb_side_nav_page' ).length ) {
$( '#main-content' ).append( '<ul class="et_pb_side_nav"></ul>' );
$sections.each( function( index, element ) {
var active_class = ( 0 === index ) ? 'active' : '';
$( '.et_pb_side_nav' ).append( '<li class="side_nav_item"><a href="#" id="side_nav_item_id_' + index + '" class= "' + active_class + '">' + index + '</a></li>' );
if ( total_sections - 1 === index ) {
window.et_side_nav_links_initialized = true;
}
});
$( 'ul.et_pb_side_nav' ).css( 'marginTop', '-' + side_nav_offset + 'px' );
$( '.et_pb_side_nav' ).addClass( 'et-visible' );
$( '.et_pb_side_nav a' ).click( function() {
// We use the index position of the sections to locate them instead of custom classes so
// that we have the same implementation for the frontend website and the Visual Builder.
var index = parseInt( $( this ).text() );
var $target = $( '.et_pb_section:visible:not(.et_pb_section div)' ).eq( index );
var top_section = $(this).text() == "0";
et_pb_smooth_scroll( $target, top_section, 800 );
if ( ! $( '#main-header' ).hasClass( 'et-fixed-header' ) && $( 'body' ).hasClass( 'et_fixed_nav' ) && parseInt( $( window ).width() ) > 980 ) {
setTimeout( function() {
et_pb_smooth_scroll( $target, top_section, 200 );
}, 500 );
}
return false;
});
$( window ).on( 'scroll', et_pb_window_side_nav_scroll_init );
}
};
et_pb_side_nav_page_init();
if ( $('.et_pb_scroll_top').length ) {
$(window).scroll(function(){
if ($(this).scrollTop() > 800) {
$('.et_pb_scroll_top').show().removeClass( 'et-hidden' ).addClass( 'et-visible' );
} else {
$('.et_pb_scroll_top').removeClass( 'et-visible' ).addClass( 'et-hidden' );
}
});
//Click event to scroll to top
$('.et_pb_scroll_top').click(function(){
$('html, body').animate({scrollTop : 0},800);
});
}
if ( $( '.comment-reply-link' ).length ) {
$( '.comment-reply-link' ).addClass( 'et_pb_button' );
}
$( '#et_top_search' ).click( function() {
var $search_container = $( '.et_search_form_container' );
if ( $search_container.hasClass('et_pb_is_animating') ) {
return;
}
$( '.et_menu_container' ).removeClass( 'et_pb_menu_visible et_pb_no_animation' ).addClass('et_pb_menu_hidden');
$search_container.removeClass( 'et_pb_search_form_hidden et_pb_no_animation' ).addClass('et_pb_search_visible et_pb_is_animating');
setTimeout( function() {
$( '.et_menu_container' ).addClass( 'et_pb_no_animation' );
$search_container.addClass( 'et_pb_no_animation' ).removeClass('et_pb_is_animating');
}, 1000);
$search_container.find( 'input' ).focus();
et_set_search_form_css();
});
function et_hide_search() {
if ( $( '.et_search_form_container' ).hasClass('et_pb_is_animating') ) {
return;
}
$( '.et_menu_container' ).removeClass( 'et_pb_menu_hidden et_pb_no_animation' ).addClass( 'et_pb_menu_visible' );
$( '.et_search_form_container' ).removeClass('et_pb_search_visible et_pb_no_animation' ).addClass( 'et_pb_search_form_hidden et_pb_is_animating' );
setTimeout( function() {
$( '.et_menu_container' ).addClass( 'et_pb_no_animation' );
$( '.et_search_form_container' ).addClass( 'et_pb_no_animation' ).removeClass('et_pb_is_animating');
}, 1000);
}
function et_set_search_form_css() {
var $search_container = $( '.et_search_form_container' );
var $body = $( 'body' );
if ( $search_container.hasClass( 'et_pb_search_visible' ) ) {
var header_height = $( '#main-header' ).innerHeight(),
menu_width = $( '#top-menu' ).width(),
font_size = $( '#top-menu li a' ).css( 'font-size' );
$search_container.css( { 'height' : header_height + 'px' } );
$search_container.find( 'input' ).css( 'font-size', font_size );
if ( ! $body.hasClass( 'et_header_style_left' ) ) {
$search_container.css( 'max-width', menu_width + 60 );
} else {
$search_container.find( 'form' ).css( 'max-width', menu_width + 60 );
}
}
}
$( '.et_close_search_field' ).click( function() {
et_hide_search();
});
$( document ).mouseup( function(e) {
var $header = $( '#main-header' );
if ( $( '.et_menu_container' ).hasClass('et_pb_menu_hidden') ) {
if ( ! $header.is( e.target ) && $header.has( e.target ).length === 0 ) {
et_hide_search();
}
}
});
// Detect actual logo dimension, used for tricky fixed navigation transition
function et_define_logo_dimension() {
var $logo = $('#logo'),
logo_src = $logo.attr( 'src' ),
is_svg = logo_src.substr( -3, 3 ) === 'svg' ? true : false,
$logo_wrap,
logo_width,
logo_height;
// Append invisible wrapper at the bottom of the page
$('body').append( $('<div />', {
'id' : 'et-define-logo-wrap',
'style' : 'position: fixed; bottom: 0; opacity: 0;'
}));
// Define logo wrap
$logo_wrap = $('#et-define-logo-wrap');
if( is_svg ) {
$logo_wrap.addClass( 'svg-logo' );
}
// Clone logo to invisible wrapper
$logo_wrap.html( $logo.clone().css({ 'display' : 'block' }).removeAttr( 'id' ) );
// Get dimension
logo_width = $logo_wrap.find('img').width();
logo_height = $logo_wrap.find('img').height();
// Add data attribute to $logo
$logo.attr({
'data-actual-width' : logo_width,
'data-actual-height' : logo_height
});
// Destroy invisible wrapper
$logo_wrap.remove();
// Init logo transition onload
et_fix_logo_transition( true );
}
if ( $('#logo').length ) {
// Wait until logo is loaded before performing logo dimension fix
// This comes handy when the page is heavy due to the use of images or other assets
$('#logo').attr( 'src', $('#logo').attr('src') ).load( function(){
et_define_logo_dimension();
} );
}
// Set width for adsense in footer widget
$('.footer-widget').each(function(){
var $footer_widget = $(this),
footer_widget_width = $footer_widget.width(),
$adsense_ins = $footer_widget.find( '.widget_adsensewidget ins' );
if ( $adsense_ins.length ) {
$adsense_ins.width( footer_widget_width );
}
});
/**
* Visual Builder adjustment
*/
function et_fb_side_nav_page_init() {
$( window ).off( 'scroll', window.et_pb_window_side_nav_scroll_init );
$( '#main-content .et_pb_side_nav' ).off( 'click', '.et_pb_side_nav a' );
$( '#main-content .et_pb_side_nav' ).remove();
et_pb_side_nav_page_init();
}
if ( $('body').is('.et-fb') ) {
$(window).on( 'et_fb_root_did_mount', function() {
et_fb_side_nav_page_init();
et_all_elements_loaded();
} );
$(window).on( 'et_fb_section_content_change', et_fb_side_nav_page_init );
} else {
$( window ).load( et_all_elements_loaded );
}
} );
// Fixing logo size transition in tricky header style
function et_fix_logo_transition( is_onload ) {
var $body = $( 'body' ),
$logo = $( '#logo' ),
logo_actual_width = parseInt( $logo.attr( 'data-actual-width' ) ),
logo_actual_height = parseInt( $logo.attr( 'data-actual-height' ) ),
logo_height_percentage = parseInt( $logo.attr( 'data-height-percentage' ) ),
$top_nav = $( '#et-top-navigation' ),
top_nav_height = parseInt( $top_nav.attr( 'data-height' ) ),
top_nav_fixed_height = parseInt( $top_nav.attr( 'data-fixed-height' ) ),
$main_header = $('#main-header'),
is_header_split = $body.hasClass( 'et_header_style_split' ),
is_fixed_nav = $main_header.hasClass( 'et-fixed-header' ),
is_hide_primary_logo = $body.hasClass( 'et_hide_primary_logo' ),
is_hide_fixed_logo = $body.hasClass( 'et_hide_fixed_logo' ),
logo_height_base = is_fixed_nav ? top_nav_height : top_nav_fixed_height,
logo_wrapper_width,
logo_wrapper_height;
is_onload = typeof is_onload === 'undefined' ? false : is_onload;
// Fix for inline centered logo in horizontal nav
if ( is_header_split && ! window.et_is_vertical_nav ) {
// On page load, logo_height_base should be top_nav_height
if ( is_onload ) {
logo_height_base = top_nav_height;
}
// Calculate logo wrapper height
logo_wrapper_height = ( logo_height_base * ( logo_height_percentage / 100 ) + 22 );
// Calculate logo wrapper width
logo_wrapper_width = logo_actual_width * ( logo_wrapper_height / logo_actual_height );
// Override logo wrapper width to 0 if it is hidden
if ( is_hide_primary_logo && ( is_fixed_nav || is_onload ) ) {
logo_wrapper_width = 0;
}
if ( is_hide_fixed_logo && ! is_fixed_nav && ! is_onload ) {
logo_wrapper_width = 0;
}
// Set fixed width for logo wrapper to force correct dimension
$( '.et_header_style_split .centered-inline-logo-wrap' ).css( { 'width' : logo_wrapper_width } );
}
}
function et_toggle_slide_menu( force_state ) {
var $slide_menu_container = $( '.et_header_style_slide .et_slide_in_menu_container' ),
$page_container = $( '.et_header_style_slide #page-container, .et_header_style_slide.et_fixed_nav #main-header' ),
$header_container = $( '.et_header_style_slide #main-header' ),
is_menu_opened = $slide_menu_container.hasClass( 'et_pb_slide_menu_opened' ),
set_to = typeof force_state !== 'undefined' ? force_state : 'auto',
is_boxed_layout = $( 'body' ).hasClass( 'et_boxed_layout' ),
page_container_margin = is_boxed_layout ? parseFloat( $( '#page-container' ).css( 'margin-left' ) ) : 0,
slide_container_width = $slide_menu_container.innerWidth();
if ( 'auto' !== set_to && ( ( is_menu_opened && 'open' === set_to ) || ( ! is_menu_opened && 'close' === set_to ) ) ) {
return;
}
if ( is_menu_opened ) {
$slide_menu_container.css( { right: '-' + slide_container_width + 'px' } );
$page_container.css( { left: '0' } );
if ( is_boxed_layout && et_is_fixed_nav ) {
$header_container.css( { left : page_container_margin + 'px' } );
}
// hide the menu after animation completed
setTimeout( function() {
$slide_menu_container.css( { 'display' : 'none' } );
}, 700 );
} else {
$slide_menu_container.css( { 'display' : 'block' } );
// add some delay to make sure css animation applied correctly
setTimeout( function() {
$slide_menu_container.css( { right: '0' } );
$page_container.css( { left: '-' + ( slide_container_width - page_container_margin ) + 'px' } );
if ( is_boxed_layout && et_is_fixed_nav ) {
var left_position = 0 > slide_container_width - ( page_container_margin * 2 ) ? Math.abs( slide_container_width - ( page_container_margin * 2 ) ) : '-' + ( slide_container_width - ( page_container_margin * 2 ) );
if ( left_position < slide_container_width ) {
$header_container.css( { left: left_position + 'px' } );
}
}
}, 50 );
}
$( 'body' ).toggleClass( 'et_pb_slide_menu_active' );
$slide_menu_container.toggleClass( 'et_pb_slide_menu_opened' );
}
// Scrolling to the correct place on page if Fixed Nav enabled
function et_adjust_woocommerce_checkout_scroll() {
if ( ! et_is_fixed_nav ) {
return;
}
var window_width = parseInt( $et_window.width() );
if ( 980 >= window_width ) {
return;
}
var headerHeight = parseInt( $( '#main-header' ).innerHeight() );
// scroll to the top of checkout form taking into account fixed header height
$( 'html, body' ).animate({
scrollTop: ( $( 'form.checkout' ).offset().top - 100 - headerHeight )
}, 1000 );
}
$( '#main-header' ).on( 'click', '.et_toggle_slide_menu', function() {
et_toggle_slide_menu();
});
if ( et_is_touch_device ) {
// open slide menu on swipe left
$et_window.on( 'swipeleft', function( event ) {
var window_width = parseInt( $et_window.width() ),
swipe_start = parseInt( event.swipestart.coords[0] ); // horizontal coordinates of the swipe start
// if swipe started from the right edge of screen then open slide menu
if ( 30 >= window_width - swipe_start ) {
et_toggle_slide_menu( 'open' );
}
} );
// close slide menu on swipe right
$et_window.on( 'swiperight', function( event ){
if ( $( 'body' ).hasClass( 'et_pb_slide_menu_active' ) ) {
et_toggle_slide_menu( 'close' );
}
});
}
$( '#page-container' ).on( 'click', '.et_toggle_fullscreen_menu', function() {
var $menu_container = $( '.et_header_style_fullscreen .et_slide_in_menu_container' ),
top_bar_height = $menu_container.find( '.et_slide_menu_top' ).innerHeight();
$menu_container.toggleClass( 'et_pb_fullscreen_menu_opened' );
$( 'body' ).toggleClass( 'et_pb_fullscreen_menu_active' );
if ( $menu_container.hasClass( 'et_pb_fullscreen_menu_opened' ) ) {
$menu_container.addClass( 'et_pb_fullscreen_menu_animated' );
// adjust the padding in fullscreen menu
$menu_container.css( { 'padding-top': top_bar_height + 20 } );
} else {
setTimeout( function() {
$menu_container.removeClass( 'et_pb_fullscreen_menu_animated' );
}, 1000 );
}
});
$( window ).unload( function () {
/**
* Fix the issue with Fullscreen menu, that remains open,
* when back button is clicked in Firefox
*/
if ( $('body').hasClass('et_pb_fullscreen_menu_active') ) {
$('.et_toggle_fullscreen_menu').trigger('click');
}
} );
$( '.et_pb_fullscreen_nav_container' ).on( 'click', 'li.menu-item-has-children > a', function() {
var $this_parent = $( this ).closest( 'li' ),
$this_arrow = $this_parent.find( '>a .et_mobile_menu_arrow' ),
$closest_submenu = $this_parent.find( '>ul' ),
is_opened_submenu = $this_arrow.hasClass( 'et_pb_submenu_opened' ),
sub_menu_max_height;
$this_arrow.toggleClass( 'et_pb_submenu_opened' );
if ( is_opened_submenu ) {
$closest_submenu.removeClass( 'et_pb_slide_dropdown_opened' );
$closest_submenu.slideToggle( 700, 'easeInOutCubic' );
} else {
$closest_submenu.slideToggle( 700, 'easeInOutCubic' );
$closest_submenu.addClass( 'et_pb_slide_dropdown_opened' );
}
return false;
} );
// define initial padding-top for fullscreen menu container
if ( $( 'body' ).hasClass( 'et_header_style_fullscreen' ) ) {
var $menu_container = $( '.et_header_style_fullscreen .et_slide_in_menu_container' );
if ( $menu_container.length ) {
var top_bar_height = $menu_container.find( '.et_slide_menu_top' ).innerHeight();
$menu_container.css( { 'padding-top': top_bar_height + 20 } );
}
}
// adjust the scrolling position on Woocommerce checkout page in case of error
$( document.body ).on( 'checkout_error', function() {
et_adjust_woocommerce_checkout_scroll();
} );
$( document.body ).on( 'updated_checkout', function( data ) {
if ( 'failure' !== data.result ) {
return;
}
et_adjust_woocommerce_checkout_scroll();
} );
})(jQuery);