When I'm trying to use carousel javascript component of the bootstrap library. I get Uncaught TypeError: Cannot read property 'slice' of undefined
Here is the part of the code that has the carousel in my application.hbs
<article class="carousel-moto slide" data-ride="carousel" id="carousel-example-generic">
<hgroup class="carousel-inner">
<h3 class="item">Blah</h3>
<h3 class="item">blah</h3>
<h3 class="item">blahhhhh</h3>
<h3 class="item">bleh</h3>
</hgroup>
</article>
routes/application.js
import Ember from "ember";
export default Ember.Route.extend({
activate: function() {
Ember.$('.carousel-moto').carousel();
}
});
how do I get rid of this error?
UPDATE Here is the JS Bin http://jsbin.com/kiduma/1/