mirror of
https://github.com/eliahuhorwitz/Academic-project-page-template.git
synced 2026-05-12 13:41:45 +02:00
98ef9cfbe9
Removed logging
22 lines
413 B
JavaScript
22 lines
413 B
JavaScript
window.HELP_IMPROVE_VIDEOJS = false;
|
|
|
|
|
|
$(document).ready(function() {
|
|
// Check for click events on the navbar burger icon
|
|
|
|
var options = {
|
|
slidesToScroll: 1,
|
|
slidesToShow: 1,
|
|
loop: true,
|
|
infinite: true,
|
|
autoplay: true,
|
|
autoplaySpeed: 5000,
|
|
}
|
|
|
|
// Initialize all div with carousel class
|
|
var carousels = bulmaCarousel.attach('.carousel', options);
|
|
|
|
bulmaSlider.attach();
|
|
|
|
})
|