/** * v1.0 - Copyright 2014 Madden Media - All rights reserved. * * Advanced Google Analytics tracking script that tracks starting reading, 25%, * 50%, 75% and completion. This is otherwise a duplicate of: * * madden-ga-track-start-end-v1.0.js * * This duplication is in place to reduce configuration work for callers. * * Requires Google Analytics and jQuery. This script will determine which analytics * object (universal, legacy, etc.) seems to be present and will adjust tracking * calls based on this. */ // safe console log if (typeof console == "undefined"){console={};console.log = function(){return;}} jQuery(function($) { // Debug flags var debugMode = false; var logOutput = false; // Default time delay before checking location var callBackTime = 100; // percent of the page where reader events fire // at (use decimals < 1 - i.e. .25) - use .0001 for "start of page" var readerLocationPercents = [.0001, .25, .5, .75]; // # px before tracking a reader (will be assigned based on readerLocationPercents) var readerLocations = [ ]; // how far have they made it (this will be managed by the script) var readerLastPassed = 0; // Set some flags for tracking & execution var timer = 0; var isScrolling = false; var endContent = false; var didComplete = false; // Set some time variables to calculate reading time var startTime = new Date(); var beginning = startTime.getTime(); var totalTime = 0; // Check the location and track user function trackLocation () { // positions var curWinBottom = ($(window).height() + $(window).scrollTop()); var height = $(document).height(); // figure out scroll time var currentTime = new Date(); var timeToScroll = Math.round((currentTime.getTime() - beginning) / 1000); // If user starts to scroll send an event (if it's at a tracking point) for (i=readerLastPassed; i < readerLocations.length; i++) { // run location test if ( (curWinBottom >= readerLocations[i]) && (timeToScroll > 0) ) { // set label var label = makeReadingEventLabel(readerLocationPercents[i]); // send the event sendEvent('Reading', label, timeToScroll, location.pathname); // log it log('READING: ' + readerLocations[i] + " / " + label + " / " + timeToScroll); // note what they've tracked readerLastPassed = (i + 1); } } // if user has hit the bottom of page send an event if ( (curWinBottom >= height) && (! didComplete) ) { currentTime = new Date(); // figure out scroll time var currentTime = new Date(); var timeToScroll = Math.round((currentTime.getTime() - beginning) / 1000); // set label var label = makeReadingEventLabel(1); // send the event sendEvent('Reading', label, timeToScroll, location.pathname); // log it log('READING: ' + label + " / " + timeToScroll); didComplete = true; } } // figure out how tall our page is and adjust reader location to be a percent of that function adjustReaderLocation (percent) { var docHeight = $(document).height(); var adjHeight = Math.floor(docHeight * percent); return adjHeight; } // util function to make a pretty reading label string function makeReadingEventLabel (raw) { var lbl = ""; if (raw < .001) { lbl = "StartReading"; } else if (raw == 1) { lbl = "ContentBottom"; } else { lbl = ("Reading " + (raw * 100) + "%"); } return lbl; } // a log wrapper to check if we want it logged first function log (msg) { if (logOutput) { console.log(msg); } } // sends the event to whichever object we seem to have found function sendEvent (eventCategory, eventAction, eventValue, page) { if (debugMode) { // MAY EXIT THIS BLOCK return; } // test for any given analytics type if (typeof _gaq != "undefined") { // legacy analytics if (typeof pageTracker != "undefined") { // "traditional syntax" pageTracker._trackEvent(eventCategory, eventAction, page, eventValue); } else { // "asynchronous syntax" _gaq.push(['_trackEvent', eventCategory, eventAction, page, eventValue]); _gaq.push(['pageTracker._trackEvent', eventCategory, eventAction, page, eventValue]); } } else if (typeof ga != "undefined") { // universal analytics ga('send', { 'hitType': 'event', 'eventCategory': eventCategory, 'eventAction': eventAction, 'eventLabel': page, 'eventValue': eventValue }); } } // determine reader % locations function determineReaderLocations () { for (i=0; i < readerLocationPercents.length; i++) { readerLocations[i] = adjustReaderLocation(readerLocationPercents[i]); // log it log('LOCATION: ' + readerLocationPercents[i] + ' (' + readerLocations[i] + ' / ' + $(document).height() + ')'); } } // assign all percent sizes based on height of page $(window).load(function() { determineReaderLocations(); }); // reassign all percent sizes based on height of page $(window).resize(function() { determineReaderLocations(); }); // Track the scrolling and track location $(window).scroll(function() { if (timer) { clearTimeout(timer); } // Use a buffer so we don't call trackLocation too often. timer = setTimeout(trackLocation, callBackTime); }); }); /* * v1.2 * * Automatically track outbound links in Google Analytics. Any link that you do not want tracked * can be assigned a "noGA" class and it will not be skipped here. Includes support for GA and GAQ * * CREDIT: http://www.sitepoint.com/track-outbound-links-google-analytics/ * * Modified to support ability for links to open in new window w/o triggering a popup warning */ (function($) { "use strict"; // default no tracking class var defaultNoTrackClass = "noGA"; // current page host var baseURI = window.location.host; // click event on body $("body").on("click", function(e) { // abandon if link already aborted or analytics is not available if ( (e.isDefaultPrevented()) || ( (typeof _gaq === "undefined") && (typeof ga === "undefined") ) ) { return; } // abandon if no active link or link within domain var link = $(e.target).closest("a"); // if (link.length != 1 || baseURI == link[0].host) return; if (link.length != 1) return; // check the link to see if it should not be tracked if ( (link.attr("class") !== undefined) && (link.attr("class").indexOf(defaultNoTrackClass) != -1) ) { return; } // cancel event and record outbound link e.preventDefault(); var href = link[0].href; var target = link[0].target; if (target != "") { // gets us around popup blocking $(link[0]).on("click", function(){ var w = window.open(href, target); trackEvent(href, false); return false; }); $(link[0]).click(); } else { trackEvent(href, true); // in case hit callback bogs down setTimeout(function() { self.location.href = href; }, 1000); } // track the event function trackEvent (href, runHitCallback) { // test for any given analytics type if (typeof _gaq != "undefined") { // legacy analytics if (typeof pageTracker != "undefined") { // "traditional syntax" pageTracker._trackEvent('Presentation Layer', 'Outbound Click', href); } else { // "asynchronous syntax" var redirect = function (runHitCallback) { if (runHitCallback) { self.location.href = href; } else { return false; } }; _gaq.push(['_set','hitCallback', redirect(runHitCallback)]); _gaq.push(['_trackEvent', 'Presentation Layer', 'Outbound Click', href]); _gaq.push(['pageTracker._trackEvent', 'Presentation Layer', 'Outbound Click', href]); } } else if (typeof ga != "undefined") { // universal analytics ga('send', { 'hitType': 'event', 'eventCategory': 'Presentation Layer', 'eventAction': 'Outbound Click', 'eventLabel': href, 'hitCallback': (runHitCallback) ? function() { self.location.href = href; } : function() { return false; } }); } } }); })(jQuery); /** * v1.2 - Copyright 2015 Madden Media - All rights reserved. * * A set of parallax design functionality. */ !function(a){"use strict";a.fn.parallaxBG=function(b){var c=a(window).height(),d=0,e=a(window).scrollTop(),f=0,g=0,h=a.extend({adjustX:0,adjustY:0,bgXOffset:0,bgYOffset:0,bgXPosition:"100%",bgYPosition:"100%"},b);return this.each(function(){var b=a(this);a(window).scroll(function(){var i=h.bgXAdjust,j=b.css("backgroundPosition").split(" ");parseInt(j[0]);if(e=a(window).scrollTop(),f=b.offset().top,g=b.outerHeight(),e=e+c)){var l=0==h.adjustX?h.bgXPosition:Math.round((f-e)*h.adjustX)+0+h.bgXOffset+"px",m=0==h.adjustY?h.bgYPosition:Math.round((f-e)*h.adjustY)+0+h.bgYOffset+"px";b.css("background-position",l+" "+m)}})})},a.fn.parallaxLockElement=function(b){var c=!1,d=a.extend({parentEl:"",offsetTop:0,additionalCSS:void 0,onLock:void 0,onRelease:void 0},b);return this.each(function(){var b=a(this),e=a(d.parentEl);a(window).scroll(function(){var f=parseInt(e.offset().top-a(window).scrollTop()-d.offsetTop),g=e.offset().top+e.outerHeight(),i=(parseInt(b.outerHeight()),e.offset().top+e.outerHeight()-(b.offset().top+b.outerHeight()));f<=0?g+i<=a(window).scrollTop()+a(window).innerHeight()?c&&(c=!1,b.css({position:"absolute",top:"inherit",bottom:i+"px"}),"function"==typeof d.onRelease&&d.onRelease(this)):(b.css({position:"fixed",top:d.offsetTop+"px",bottom:"auto"}),"function"==typeof d.onLock&&d.onLock(this),c=!0):(b.css({position:"relative",top:"auto"}),"function"==typeof d.onRelease&&d.onRelease(this),c=!1),void 0!=d.additionalCSS&&b.css(d.additionalCSS)})})},a.fn.parallaxAnimateElement=function(b){var c=new Array,d=0,e=0,f=!1,g=a.extend({frames:1,elementClass:"floatingElement",elementFrameClassRoot:"frame",startOffset:null,endOffset:null,showWhenCentered:!1,centerOffsetAnimationRange:null,lock:!1,parentEl:"",offsetTop:0,additionalCSS:void 0,onLock:void 0,onRelease:void 0},b);g.lock?a(this).parallaxLockElement({parentEl:g.parentEl,offsetTop:g.offsetTop,additionalCSS:g.additionalCSS,onLock:g.onLock,onRelease:g.onRelease}):f=!0;var h=parseInt(a(this).parent().height());if(g.showWhenCentered)null==g.centerOffsetAnimationRange?g.centerOffsetAnimationRange=1:g.centerOffsetAnimationRange.indexOf("%")!=-1?g.centerOffsetAnimationRange=parseInt(g.centerOffsetAnimationRange)/100:g.centerOffsetAnimationRange=1;else{if(null!=g.startOffset)if(g.startOffset.indexOf("%")!=-1){var i=parseInt(g.startOffset)/100;d=Math.floor(h*i)}else{var i=parseInt(g.startOffset);d=i}if(null!=g.endOffset)if(g.endOffset.indexOf("%")!=-1){var i=parseInt(g.endOffset)/100;e=Math.floor(h-h*i)}else{var i=parseInt(g.endOffset);e=i}0==d&&0==e||(h=h-e-d);for(var j=h/g.frames,k=1;k<=g.frames;k++)c.push(Math.floor(d+j*k));f&&void 0!=g.additionalCSS&&a(this).css(g.additionalCSS)}return this.each(function(){var b=a(this),d=c.length,e=g.showWhenCentered?a(this).height()*g.centerOffsetAnimationRange:a(this).height();a(window).scroll(function(){var f=b.offset().top,h=!(f+b.outerHeight()<=a(window).scrollTop()||f>=a(window).scrollTop()+a(window).height());if(h){if(g.showWhenCentered){var i=parseInt(b.offset().top-a(window).scrollTop()),j=parseInt(i+e/2),k=parseInt(a(window).innerHeight()/2),l=parseInt(j-e),m=parseInt(j+e);if(k=l&&k<=m){var n=Math.max(0,Math.min(1,1-(l+(j-k))/j));d=Math.ceil(g.frames*n)}else d=g.frames}else for(var o=parseInt(b.parent().offset().top-a(window).scrollTop()),p=o*-1+e/2,q=0;q=$(window).scrollTop()+$(window).height())},getItemInViewportCenter=function(a,b){var c=$(a).offset().top,d=$(window).height()/2;return b=b||0,!(c>=$(window).scrollTop()+d+b||c<=$(window).scrollTop()+d-b)},getStickyTopBarHeight=function(){return _stickyTopBarHeight},getIsMobile=function(){return _isMobile},getIsTablet=function(){return _isTablet},getDoParallax=function(){return _doParallax},getIsDesktop=function(){return!/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)},getIsIPad=function(){return navigator.userAgent.match(/iPad;.*CPU.*OS/i)},getIsResponsive=function(){return IS_RESPONSIVE},adjustLayoutAfterResize=function(){initChapterTops(!0),adjustMultiSizedImages()},adjustChapterLinksArtHeight=function(a,b){$(a).css("height",$(b).outerHeight())},adjustSizeToParentAndViewport=function(a,b){$(a).css("height",getVisibleViewport(!0)),$(a).css("width",$(b).width())},adjustScrollProgress=function(){if(0!=$(_stickyTopBarProgressBarEl).length){var e,a=-1,b=$(document).height(),c=$("body").height(),d=b-c-_stickyTopBarOffset;e=Math.round(($(document).scrollTop()-_stickyTopBarOffset)/d*100),$(_stickyTopBarProgressBarEl).css("width",e+"%");for(var f=_chapterTops.length-1;f>=0;f--)if($(document).scrollTop()>=_chapterTops[f]){a=f+1;break}return a!=-1&&adjustChapterLinks(a),a}},adjustChapterLinks=function(a){$(_chapterLinkEl).each(function(){$(this).attr("href")!="#"+a?"function"==typeof _setChapterLinkCallback&&_setChapterLinkCallback(this,!1):("function"==typeof _setChapterLinkCallback&&_setChapterLinkCallback(this,!0),_onChapter=a)})},adjustMultiSizedImages=function(){var a=$(_multiSizeImageEl);a.length&&a.each(function(){getIsResponsive()||void 0==$(this).data("src-legacy")?getIsMobile()&&void 0!=$(this).data("src-small")?$(this).attr("src",$(this).data("src-small")):getIsTablet()&&void 0!=$(this).data("src-medium")?$(this).attr("src",$(this).data("src-medium")):void 0!=$(this).data("src")&&$(this).attr("src",$(this).data("src")):$(this).attr("src",$(this).data("src-legacy"))})},toTop=function(){$("html, body").animate({scrollTop:0},600)},runTopMenuControl=function(){getIsMobile()?toggleMobileMenu(_mobileMenuEl,_topAndMobileMenuControl):toTop()},toggleMobileMenu=function(a,b){getIsMobile()&&($(a).toggle("fast"),$(b).toggle("fast"))},goToChapter=function(a){var b=$(_chapterElPrefix+a),c=b.offset().top-_stickyTopBarHeight+1,d=_onChapter>a?_onChapter-a:a-_onChapter,e=Math.floor(1e3/(_chapterTops.length-(_chapterTops.length-d)));$("html, body").animate({scrollTop:c},e,function(){adjustChapterLinks(a),"function"==typeof _chapterSetCompleteCallback&&_chapterSetCompleteCallback(a)}),_onChapter=a},animateOverflowContent=function(a,b,c,d,e){if(e==_onChapter){var f=$(a).css("background-position").split(" "),g=isNaN(b)?b:b+parseInt(f[0])+"px",h=isNaN(c)?c:c+parseInt(f[1])+"px";$(a).css({"background-position":g+" "+h})}window.setTimeout(function(){animateOverflowContent(a,b,c,d,e)},d)},cycleImages=function(a,b){var c=$(a+" .active"),d=c.next().length>0?c.next():$(a+" img:first");d.css("z-index",2),c.fadeOut(b,function(){c.css("z-index",1).show().removeClass("active"),d.css("z-index",3).addClass("active")})}; /** * v1.0 - Copyright 2015 Madden Media - All rights reserved. * * Content-specific layout functionality. These functions * make many assumptions about content contained in the page. * * NOTE: Assumes that madden-content-frameworks-v1.0.js has been loaded and * that the initial view types (mobile, tablet, etc.) have been defined. */ // mobile can call resize during scroll - we can cache width // and check if an actual resize happens var _winWidth = 0; var NUMBER_OUTER = 200; var NUMBER_INNER = 100; ///////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////// // STOCK EVENT FUNCTIONS ///////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////// // // Called on document ready // contentOnReady = function () { // 12.may.2k17 - whoopsiedaisy $("#ci0Title").html($("#ci0Title").html().replace( "Must See’s", "Must-Sees" )); // set the window width _winWidth = $(window).width(); // parallax effects if (getDoParallax()) { // parallax scroll the top collage $("#cimg1").parallaxBG({ adjustY: .12, bgXPosition: 'center' }); $("#cimg2").parallaxBG({ adjustY: .16, bgXPosition: 'left' }); $("#cimg3").parallaxBG({ adjustY: .14, bgXPosition: 'right' }); $("#cimg4").parallaxBG({ adjustY: .12, bgXPosition: 'center' }); $("#cimg5").parallaxBG({ adjustY: .16, bgXPosition: 'center' }); $("#cimg6").parallaxBG({ adjustY: .10, bgXPosition: 'center' }); $("#cimg7").parallaxBG({ adjustY: .18, bgXPosition: 'center' }); // c2 map drawing $("#c2Map").parallaxAnimateElement({ frames: 6, startOffset: "20%", endOffset: "55%", lock: false, parentEl: "#c2Text", elementClass: "c2Map" }); } customAdjustLayout(true); // analytics injection (usually done in footer; added after the fact here) ga('create', 'UA-11039098-1', 'auto'); ga('send', 'pageview'); // and ditto for the retargeting tag var google_conversion_id = 982029061; var google_conversion_label = "6xIBCKPE9gQQhaai1AM"; var google_custom_params = window.google_tag_params; var google_remarketing_only = true; // inject the parent script var s = document.createElement("script"); s.type = "text/javascript"; s.src = "//www.googleadservices.com/pagead/conversion.js"; $("head").append(s); // add the complete class to the loader $("#loading").addClass("complete"); } // // Called on document scroll // contentOnScroll = function () { var scrollTop = $(document).scrollTop(); if (getDoParallax()) { changeNumberImage("#c3Img1", 1); changeNumberImage("#c3Img2", 2); changeNumberImage("#c3Img3", 3); changeNumberImage("#c3Img4", 4); changeNumberImage("#c3Img5", 5); } } // // Called on a touch move on mobile // contentOnTouchMove = function () { } // // Called on document resize // contentOnResize = function () { customAdjustLayout(); } ///////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////// // CUSTOM FUNCTIONS ///////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////// // // The frameworks was given this function to handle setting chapter buttons // when the chapter is set // // chapterEl: The chapter link DOM element // on: Is it being turned on? (true|false) // customChapterLinkAdjust = function (chapterEl, on) { $(chapterEl).attr("class", ((on) ? "navLink chapterLink noGA on" : "navLink chapterLink noGA")); } // // Adjust this specific layout after a load or resize event // // isLoad: Is this being called by a load or resize event? // customAdjustLayout = function (isLoad) { var localNotJustTouchScroll = isLoad; // is it really a resize? if ($(window).width() != _winWidth) { // yes localNotJustTouchScroll = true; _winWidth = $(window).width(); } if (localNotJustTouchScroll) { // adjust the height of the c2 inline image to be // the height of the related section // $("#c2Inline").css("height", ($("#c2Text").height() + "px")); // resize footer links to be equal height of the tallest one equalizeRelatedLlinks(); } if (getDoParallax()) { // center map images initially and as viewport size changes var mWidth = $("#c2Map").width(); var imgWidth = $("#c2Map > img:first-of-type").width(); var imgHeight = $("#c2Map > img:first-of-type").height(); var left = ((mWidth - imgWidth) / 2); $("#c2Map > img").css("left", (left + "px")); $("#c2Map").css("height", (imgHeight + "px")); } } // // processes c3 number center positions // changeNumberImage = function (el, parent) { if (getItemInViewportCenter(el, NUMBER_OUTER)) { var pos = 1; $(el).attr("src", newImg); // if (getItemInViewportCenter(el, NUMBER_INNER)) { // pos = 2; // } var newImg = ("//maddencdn.com/content/images/2015/st_joseph/stjomusts_button" + parent + "flip" + pos + ".jpg"); $(el).attr("src", newImg); } else { var numImg = ("//maddencdn.com/content/images/2015/st_joseph/stjomusts_button" + parent + ".png"); $(el).attr("src", numImg); } } // // adjusts the heights for the bottom related content divs // equalizeRelatedLlinks = function () { var h1 = $("#fLink1").height(); var h2 = $("#fLink2").height(); var h3 = $("#fLink3").height(); var max = h1; max = (h2 > max) ? h2 : max; max = (h3 > max) ? h3 : max; // set all to max $(".alsoLikeLink").css("height", (max + "px")); }