//= require jquery //= require simple-jekyll-search // require bootstrap // require bootstrap-sprockets // require morphext //= require cookie /* Set the width of the side navigation to 250px */ function openNav() { document.getElementById("mySidenav").style.width = "250px"; } /* Set the width of the side navigation to 0 */ function closeNav() { document.getElementById("mySidenav").style.width = "0"; } $(document).ready(function () { var sjs = SimpleJekyllSearch({ searchInput: document.getElementById('search-input'), resultsContainer: document.getElementById('results-container'), json: '/search.json', searchResultTemplate: '{title}', noResultsText: ''+ $("meta[name='no-results']").attr('content') +'', exclude: ["https://blog.unitoo.it", "https://blog.unitoo.pw"] }); // $(".morphext-bounce-in").Morphext({ // animation: "bounceIn", // speed: 2500 // }); // $(".morphext-bounce-left").Morphext({ // animation: "zoomInLeft", // speed: 4500 // }); // $(".morphext-bounce-up").Morphext({ // animation: "bounceInUp", // speed: 6500 // }); });