Sha256: 959cdd58351d096664efe2c36c3d8418b00c8c81640aa3d05cd4054c56e5c4a6

Contents?: true

Size: 1.32 KB

Versions: 7

Compression:

Stored size: 1.32 KB

Contents

$(document).ready(function() {
	
	/* ===== Affix Sidebar ===== */
	/* Ref: http://getbootstrap.com/javascript/#affix-examples */

    	
	$('#doc-menu').affix({
        offset: {
            top: ($('#header').outerHeight(true) + $('#doc-header').outerHeight(true)) + 45,
            bottom: ($('#footer').outerHeight(true) + $('#promo-block').outerHeight(true)) + 75
        }
    });
    
    /* Hack related to: https://github.com/twbs/bootstrap/issues/10236 */
    $(window).on('load resize', function() {
        $(window).trigger('scroll'); 
    });

    /* Activate scrollspy menu */
    $('body').scrollspy({target: '#doc-nav', offset: 100});
    
    /* Smooth scrolling */
	$('a.scrollto').on('click', function(e){
        //store hash
        var target = this.hash;    
        e.preventDefault();
		$('body').scrollTo(target, 800, {offset: 0, 'axis':'y'});
		
	});
	
    
    /* ======= jQuery Responsive equal heights plugin ======= */
    /* Ref: https://github.com/liabru/jquery-match-height */
    
     $('#cards-wrapper .item-inner').matchHeight();
     $('#showcase .card').matchHeight();
     
    /* Bootstrap lightbox */
    /* Ref: http://ashleydw.github.io/lightbox/ */

    $(document).delegate('*[data-toggle="lightbox"]', 'click', function(e) {
        e.preventDefault();
        $(this).ekkoLightbox();
    });    


});

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
jekyll-theme-prettydocs-0.0.6 assets/js/main.js
jekyll-theme-prettydocs-0.0.5 assets/js/main.js
jekyll-theme-prettydocs-0.0.4 assets/js/main.js
jekyll-theme-prettydocs-0.0.3 assets/js/main.js
jekyll-theme-prettydocs-0.0.2 assets/js/main.js
jekyll-theme-prettydocs-0.0.1 assets/js/main.js
prettydocs_rails-1.1.16 vendor/assets/javascripts/main.js