Skip to content

Commit

Permalink
Committed resources folder for usage with hugo themes site. See Ledne…
Browse files Browse the repository at this point in the history
  • Loading branch information
Lednerb committed Nov 12, 2018
1 parent 77b56e2 commit 788157d
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 0 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"Target":"js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js","MediaType":"application/javascript","Data":{"Integrity":"md5-OcR+EOJB6uKUez/iGAnFcg=="}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
$(document).ready(function() {
$(".toggler").click(function () {
$("nav").slideToggle();
$("#search").autocomplete("val", "");
});

$(document).keyup(function (e) {
if (e.keyCode === 27) {
if ( ! $("nav").hasClass('permanentTopNav') )
$("nav").slideUp();
$("#search").autocomplete("val", "");
}
else if (e.keyCode === 83){
if ( ! $("nav").hasClass('permanentTopNav') )
$("nav").slideDown();
$("#search").focus();
}
})

$('.flexslider').flexslider({
animation: "slide",
prevText: "",
nextText: "",
pauseOnHover: true,
});
});

hljs.initHighlightingOnLoad();
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"Target":"js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js","MediaType":"application/javascript","Data":{"Integrity":"md5-/1CubcG/wiCyO/adu0G1Tg=="}}

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"Target":"sass/combined.min.8b3f51547fb2d12438200dce1467ff2208a3337fea5bfb8690aa67acc50f023d.css","MediaType":"text/css","Data":{"Integrity":"sha256-iz9RVH+y0SQ4IA3OFGf/IgijM3/qW/uGkKpnrMUPAj0="}}

0 comments on commit 788157d

Please sign in to comment.