The carousel I had in my rails application was working until a short while ago, now the next and previous buttons don't work. No changes made to this view, or the carousel in the CSS.
Here's my code:
.carousel.slide#myCarousel
.carousel-inner
.active.item
=image_tag("/assets/1.jpg")
.carousel-caption
%h4 Caption
.item
=image_tag("/assets/2.jpg")
.carousel-caption
%h4 Caption
.item
=image_tag("/assets/3.jpg")
.carousel-caption
%h4 Caption
%a.carousel-control.left{"data-slide" => "prev", :href => "#myCarousel"} ‹
%a.carousel-control.right{"data-slide" => "next", :href => "#myCarousel"} ›