com.jwebmp.plugins.bootstrap.carousel.events.BSCarouselSlidEvent.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwebmp-bootstrap Show documentation
Show all versions of jwebmp-bootstrap Show documentation
The JWebSwing implementation for Bootstrap
JW_APP_NAME.directive('ngBsCarouselSlidDirective', function ($parse) {
return function (scope, element, attrs) {
var fn = $parse(attrs.ngBsCarouselSlid);
element.on('slid.bs.carousel', function (event) {
scope.$apply(function () {
event.preventDefault();
fn(scope, {$event: event});
});
});
};
});