MediaWiki:Common.js: Difference between revisions

No edit summary
No edit summary
Tag: Manual revert
 
(21 intermediate revisions by 2 users not shown)
Line 8: Line 8:
     // Now configure the page data and manually trigger the page view
     // Now configure the page data and manually trigger the page view
     FS.Analytics.updatePageViewData({
     FS.Analytics.updatePageViewData({
      site_id: 'FamilySearch',
  site_language: mw.config.get('wgContentLanguage'), // e.g. 'en'
  page_channel: 'Wiki',
  page_channel: 'Wiki',
  page_detail: document.location.pathname + document.location.search, //'Home' for the homepage or a unique page title for other pages; including querystring
  page_detail: 'Wiki Test'
  page_type: 'wiki',
  visitor_state: 'lo'
     });
     });
     FS.Analytics.trackPageView();
     FS.Analytics.trackPageView();
Line 19: Line 15:
});
});
/* End Adobe Analytics Tracking Details */
/* End Adobe Analytics Tracking Details */
/* Fix for <imagemap>s to prevent them from resizing  */
$( document ).ready(function() {
    $('[usemap]').each(function() {
        $(this).css('min-width', parseInt($(this).attr('width')));
    });
});
/* Add obvious background color to Beta  */
if (document.location.origin.indexOf("beta") > -1) {
    document.getElementById("mw-head").style.backgroundColor = "#ffb3b3";
}

Latest revision as of 13:30, 5 December 2024

/* Add Adobe Analytics Tracking Details 2022-11-17 */
// First listen to an event that is fired when the FS object is available
window.addEventListener('ExReady', function(){
  
  // Call setTimeout to avoid a flaw in FS that triggers infinite recursion
  setTimeout(function(){

    // Now configure the page data and manually trigger the page view
    FS.Analytics.updatePageViewData({
	  page_channel: 'Wiki',
	  page_detail: 'Wiki Test'
    });
    FS.Analytics.trackPageView();
  });
});
/* End Adobe Analytics Tracking Details */

/* Fix for <imagemap>s to prevent them from resizing  */
$( document ).ready(function() {
    $('[usemap]').each(function() {
        $(this).css('min-width', parseInt($(this).attr('width')));
    });
});

/* Add obvious background color to Beta  */
if (document.location.origin.indexOf("beta") > -1) {
    document.getElementById("mw-head").style.backgroundColor = "#ffb3b3";
}