James Peret's blog. Built with Jekyll and the Mikey theme.

footer-scripts.html 2.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <!-- Javascript -->
  2. <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
  3. <script src="{{ site.baseurl_javascripts }}imagesloaded.pkgd.min.js"></script>
  4. {% if page.syntaxHighlighter %}
  5. <script src="{{ site.baseurl_javascripts }}prism.js"></script>
  6. <script src="{{ site.baseurl_javascripts }}prism-ruby.js"></script>
  7. {% endif %}
  8. <script>
  9. $(document).ready(function(){
  10. // Featured image loaded behavior
  11. $('.section-backgroundImage img').imagesLoaded()
  12. .done( function( instance ) {
  13. $('.post-featuredImage').addClass('is-loaded');
  14. });
  15. // Modal toggle behavior
  16. $('.modal-toggle-wrapper').click(function() {
  17. $(this).toggleClass('active');
  18. $('.modal-toggle-bubble').toggleClass('active');
  19. $('.modal-toggle-bubbleShadow').toggleClass('active');
  20. $('.modal-toggle-close-wrapper').toggleClass('active');
  21. $('.fullscreenModal').toggleClass('active');
  22. });
  23. // Prevent default anchor event and make a share popup
  24. $.fn.sharePopup = function (e, intWidth, intHeight, blnResize) {
  25. e.preventDefault();
  26. intWidth = intWidth || '750';
  27. intHeight = intHeight || '500';
  28. strResize = (blnResize ? 'yes' : 'no');
  29. //// Set title and open popup with focus on it
  30. var strTitle = ((typeof this.attr('title') !== 'undefined') ? this.attr('title') : 'Social Share'),
  31. strParam = 'width=' + intWidth + ',height=' + intHeight + ',resizable=' + strResize,
  32. objWindow = window.open(this.attr('href'), strTitle, strParam).focus();
  33. }
  34. $('.shareButton').on("click", function(e) {
  35. $(this).sharePopup(e);
  36. });
  37. });
  38. // Show modal toggle after scrolling 300px
  39. $(document).scroll(function() {
  40. $('.modal-toggle-group').toggleClass('active', $(document).scrollTop() >= 300);
  41. });
  42. </script>
  43. <script type="text/javascript">
  44. mixpanel.track("{{ page.title }}");
  45. </script>
  46. <script>
  47. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  48. (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  49. m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  50. })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
  51. ga('create', 'UA-63859108-3', 'auto');
  52. ga('send', 'pageview');
  53. </script>