Difference between revisions of "MediaWiki:Common.js"

From Krafties
Jump to navigation Jump to search
Line 21: Line 21:
 
window.google_ad_slot = "6743374789";
 
window.google_ad_slot = "6743374789";
 
window.google_ad_format = 'auto';
 
window.google_ad_format = 'auto';
window.google_ad_height = 200;
+
 
 +
window.data-ad-client = "ca-pub-1672509297109714";
 +
window.data-ad-slot = "6743374789";
 +
window.data-ad-format = 'auto';
  
 
// container is where you want the ad to be inserted
 
// container is where you want the ad to be inserted

Revision as of 19:04, 5 October 2016

/* Any JavaScript here will be loaded for all users on every page load. */


    /***********************/
    //GOOGLE ANALYTICS CODE//
    /***********************/
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-33256896-1', 'auto');
  ga('send', 'pageview');
    /***********************/
    //GOOGLE ANALYTICS CODE//
    /***********************/


    // Add ads to top of page
window.google_ad_client = "ca-pub-1672509297109714";
window.google_ad_slot = "6743374789";
window.google_ad_format = 'auto';

window.data-ad-client = "ca-pub-1672509297109714";
window.data-ad-slot = "6743374789";
window.data-ad-format = 'auto';

// container is where you want the ad to be inserted
var container = document.getElementById('firstHeader');
var w = document.write;
document.write = function (content) {
alert('writing');
    container.innerHTML = content+container.innerHTML;
    document.write = w;
};
console.log('ere');

var script = document.createElement('script');
script.type = 'text/javascript';
script.src = 'http://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js';
document.body.appendChild(script);


/*
    <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- WikiAdTop -->
<ins class="adsbygoogle"
     style="display:block"
     data-ad-client="ca-pub-1672509297109714"
     data-ad-slot="6743374789"
     data-ad-format="auto"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
*/