You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
737 B
29 lines
737 B
$(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();
|