daux.io/themes/daux/js/daux.js

132 regels
3.6 KiB
JavaScript

2013-06-12 00:28:29 +02:00
2015-07-21 22:36:46 +02:00
_ = {};
2015-07-21 22:36:46 +02:00
_.now = Date.now || function() {
return new Date().getTime();
};
_.debounce = function(func, wait, immediate) {
var timeout, args, context, timestamp, result;
var later = function() {
var last = _.now() - timestamp;
if (last < wait && last >= 0) {
timeout = setTimeout(later, wait - last);
} else {
timeout = null;
if (!immediate) {
result = func.apply(context, args);
if (!timeout) context = args = null;
}
}
};
return function() {
context = this;
args = arguments;
timestamp = _.now();
var callNow = immediate && !timeout;
if (!timeout) timeout = setTimeout(later, wait);
if (callNow) {
result = func.apply(context, args);
context = args = null;
}
2015-07-21 22:36:46 +02:00
return result;
};
};
2016-04-08 00:13:06 +02:00
var codeBlocks, codeBlockView, toggleCodeBlockBtn, toggleCodeSection, codeBlockState;
2015-07-21 22:36:46 +02:00
function toggleCodeBlocks() {
2016-04-08 00:13:06 +02:00
setCodeBlockStyle(codeBlocks.hasClass('hidden') ? 1 : 0);
2015-07-21 22:36:46 +02:00
}
2016-04-08 00:13:06 +02:00
function setCodeBlockStyle(codeBlockState) {
localStorage.setItem("codeBlockState", codeBlockState);
switch (codeBlockState) {
default:
case 0:
2015-08-13 23:03:19 +02:00
toggleCodeBlockBtn.html("Show Code Blocks");
codeBlockView.removeClass('float-view');
codeBlocks.addClass('hidden');
break;
case 1:
2015-08-13 23:03:19 +02:00
toggleCodeBlockBtn.html("Hide Code Blocks");
codeBlockView.removeClass('float-view');
codeBlocks.removeClass('hidden');
break;
case 2:
2015-08-13 23:03:19 +02:00
toggleCodeBlockBtn.html("Show Code Blocks Inline");
codeBlockView.addClass('float-view');
codeBlocks.removeClass('hidden');
break;
}
}
2015-08-13 23:03:19 +02:00
//Initialize CodeBlock Visibility Settings
$(function () {
codeBlocks = $('.content-page article > pre');
2016-04-08 00:13:06 +02:00
toggleCodeSection = $('#toggleCodeBlock');
2015-08-13 23:03:19 +02:00
toggleCodeBlockBtn = $('#toggleCodeBlockBtn');
// If there is no code block we hide the link
if (!codeBlocks.size()) {
2016-04-08 00:13:06 +02:00
toggleCodeSection.addClass('hidden');
2015-08-13 23:03:19 +02:00
return;
}
2016-04-08 00:13:06 +02:00
$('#code-hide').click(function() { setCodeBlockStyle(0); });
$('#code-below').click(function() { setCodeBlockStyle(1); });
$('#code-float').click(function() { setCodeBlockStyle(2); });
2015-08-13 23:03:19 +02:00
codeBlockView = $('.right-column');
if (!codeBlockView.size()) return;
codeBlockState = localStorage.getItem("codeBlockState");
if (!codeBlockState) {
codeBlockState = 2;
} else codeBlockState = parseInt(codeBlockState);
setCodeBlockStyle(codeBlockState);
});
$(function () {
2015-07-21 22:36:46 +02:00
// Tree navigation
$('.aj-nav').click(function (e) {
e.preventDefault();
$(this).parent().siblings().find('ul').slideUp();
$(this).next().slideToggle();
});
// New Tree navigation
2016-04-08 00:13:06 +02:00
$('ul.nav.nav-list > li.has-children > a > .arrow').click(function() {
$(this).parent().parent().toggleClass('open');
return false;
});
2015-07-21 22:36:46 +02:00
// Responsive navigation
$('#menu-spinner-button').click(function () {
$('#sub-nav-collapse').slideToggle();
});
//Github ribbon placement
var ribbon = $('#github-ribbon');
function onResize() {
//Fix GitHub Ribbon overlapping Scrollbar
var a = $('article');
2016-01-08 11:04:35 +01:00
if (ribbon.length && a.length) {
2016-01-08 11:00:44 +01:00
if (a[0] && a[0].scrollHeight > $('.right-column').height()) {
ribbon[0].style.right = '16px';
} else {
ribbon[0].style.right = '';
}
2015-07-21 22:36:46 +02:00
}
}
$(window).resize(_.debounce(onResize, 100));
onResize();
});
2015-08-13 23:03:19 +02:00