From e18708f10b04455be151a5a799f0109c34f20a25 Mon Sep 17 00:00:00 2001 From: Pliable Pixels Date: Wed, 27 Sep 2017 11:39:30 -0400 Subject: package updates to set up bower correctly #535 --- .../src/directives/rn-carousel-indicators.js | 26 ---------------------- 1 file changed, 26 deletions(-) delete mode 100755 www/lib/angular-carousel/src/directives/rn-carousel-indicators.js (limited to 'www/lib/angular-carousel/src/directives/rn-carousel-indicators.js') diff --git a/www/lib/angular-carousel/src/directives/rn-carousel-indicators.js b/www/lib/angular-carousel/src/directives/rn-carousel-indicators.js deleted file mode 100755 index f4cc1bd5..00000000 --- a/www/lib/angular-carousel/src/directives/rn-carousel-indicators.js +++ /dev/null @@ -1,26 +0,0 @@ -angular.module('angular-carousel') - -.directive('rnCarouselIndicators', ['$parse', function($parse) { - return { - restrict: 'A', - scope: { - slides: '=', - index: '=rnCarouselIndex' - }, - templateUrl: 'carousel-indicators.html', - link: function(scope, iElement, iAttributes) { - var indexModel = $parse(iAttributes.rnCarouselIndex); - scope.goToSlide = function(index) { - indexModel.assign(scope.$parent.$parent, index); - }; - } - }; -}]); - -angular.module('angular-carousel').run(['$templateCache', function($templateCache) { - $templateCache.put('carousel-indicators.html', - '' - ); -}]); -- cgit v1.2.3