All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jwebmp.plugins.bootstrap.carousel.events.BSCarouselSlidEvent.js Maven / Gradle / Ivy

There is a newer version: 0.66.0.1
Show newest version
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});
            });
        });
    };
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy