mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-01 15:55:36 +01:00
56 lines
1.3 KiB
JavaScript
56 lines
1.3 KiB
JavaScript
|
|
//=include svg4everybody/dist/svg4everybody.js
|
|
//=include jquery/dist/jquery.js
|
|
//=include smooth-scroll/dist/js/smooth-scroll.js
|
|
|
|
//=include bigchain/analytics.js
|
|
//=include bigchain/dnt.js
|
|
|
|
//=include bigchain/forms.js
|
|
|
|
jQuery(function($) {
|
|
|
|
//
|
|
// init global modules
|
|
//
|
|
Forms.init()
|
|
|
|
if (!_dntEnabled()) {
|
|
GoogleAnalytics.init();
|
|
}
|
|
|
|
|
|
//
|
|
// init Smooth Scroll
|
|
//
|
|
var scroll = new SmoothScroll('a[data-scroll]', {
|
|
easing: 'easeOutQuint'
|
|
});
|
|
|
|
|
|
//
|
|
// Open all external links in new window
|
|
//
|
|
$('a').not('[href*="mailto:"]').each(function () {
|
|
var isInternalLink = new RegExp('/' + window.location.host + '/');
|
|
if ( !isInternalLink.test(this.href) ) {
|
|
$(this).attr('target', '_blank');
|
|
}
|
|
});
|
|
|
|
|
|
//
|
|
// Automatically add header links to all Markdown headings
|
|
//
|
|
$('.content--page--markdown h1:not(#heading-1), .content--page--markdown h2:not(#heading-2), .faq__question').each(function(i, el) {
|
|
var $el, icon, id;
|
|
$el = $(el);
|
|
id = $el.attr('id');
|
|
icon = '<i class="header-icon">#</i>';
|
|
if (id) {
|
|
return $el.prepend($('<a />').addClass('header-link').attr('href', '#' + id).html(icon));
|
|
}
|
|
});
|
|
|
|
});
|