Skip to content

Instantly share code, notes, and snippets.

@cyberlex404
Last active January 22, 2019 11:28
Show Gist options
  • Save cyberlex404/1c05edc2daf6f7207853a214165fca5c to your computer and use it in GitHub Desktop.
Save cyberlex404/1c05edc2daf6f7207853a214165fca5c to your computer and use it in GitHub Desktop.
(function ($, Drupal) {
'use strict';
Drupal.behaviors.WaWidgetDragdrop = {
attach: function (context, settings) {
$(".js-slide-drag").owlCarousel({
navigation: true,
pagination: true,
items: 5,
nav: true,
dots: false,
// loop: true,
mouseDrag: false,
touchDrag: false,
responsive: {
0: {
items: 1
},
768: {
items: 3
},
992: {
items: 4
},
1200: {
items: 5
}
}
});
}
};
})(jQuery, Drupal);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment