public front: add new carousel displaying themes

This commit is contained in:
nemunaire 2018-01-23 03:49:23 +01:00
parent 91663f55af
commit bd924150eb
3 changed files with 37 additions and 2 deletions

View file

@ -23,6 +23,14 @@ angular.module("FICApp")
});
}
}
}])
.directive('autocarousel', [function() {
return {
restrict: 'A',
link : function() {
$('#carouselThemes').carousel();
}
}
}]);
angular.module("FICApp")