12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
- <script src="{{ site.baseurl_javascripts }}imagesloaded.pkgd.min.js"></script>
- {% if page.syntaxHighlighter %}
- <script src="{{ site.baseurl_javascripts }}prism.js"></script>
- <script src="{{ site.baseurl_javascripts }}prism-ruby.js"></script>
- {% endif %}
- <script>
- $(document).ready(function(){
-
- $('.section-backgroundImage img').imagesLoaded()
- .done( function( instance ) {
- $('.post-featuredImage').addClass('is-loaded');
- });
-
- $('.modal-toggle-wrapper').click(function() {
- $(this).toggleClass('active');
- $('.modal-toggle-bubble').toggleClass('active');
- $('.modal-toggle-bubbleShadow').toggleClass('active');
- $('.modal-toggle-close-wrapper').toggleClass('active');
- $('.fullscreenModal').toggleClass('active');
- });
-
- $.fn.sharePopup = function (e, intWidth, intHeight, blnResize) {
- e.preventDefault();
- intWidth = intWidth || '750';
- intHeight = intHeight || '500';
- strResize = (blnResize ? 'yes' : 'no');
-
- var strTitle = ((typeof this.attr('title') !== 'undefined') ? this.attr('title') : 'Social Share'),
- strParam = 'width=' + intWidth + ',height=' + intHeight + ',resizable=' + strResize,
- objWindow = window.open(this.attr('href'), strTitle, strParam).focus();
- }
- $('.shareButton').on("click", function(e) {
- $(this).sharePopup(e);
- });
- });
-
- $(document).scroll(function() {
- $('.modal-toggle-group').toggleClass('active', $(document).scrollTop() >= 300);
- });
- </script>
|