But when I render the page the images are just stacked, like the js isn’t being called. i feel like Ember is getting in the way some how. Anyone tried to use this?
Problem is, Foundation is going to apply the orbit plugin on document ready, about the same time Ember is going to start rendering your templates. What you’ll want to do is create a Component that sets up Orbit as it’s inserting into the view. I’d create an object called App.OrbitComponent that extends Ember.Component. Then in its didInsertElement callback you can call this.$().foundation('orbit', { /* options */ }); You can see the API for manually working with foundation at http://foundation.zurb.com/docs/components/orbit.html.
Do you want me to put together a JSBin showing an example of how to do this?
If you’re using Rails with ember-rails then app/assets/javascripts/components/orbit_component.js (as a sibling to controllers, routes, views, etc). You will also need a template in app/assets/javascripts/templates/components/orbit.handlebars in order to use the helper like {{#orbit}}...{{/orbit}}.