Anyone have UIKit working with Ember?

I can get UIkit to work on a static page, and it looks like the CSS part works with Ember, but not the javascript bits.

For example, the uk-table-hover class has no effect.

I’ve tried it several ways, including the proper ember-cli way with this in ember-cli-build.js:

app.import(‘bower_components/jquery/dist/jquery.min.js’); app.import(‘bower_components/uikit/js/uikit.min.js’); app.import(‘bower_components/uikit/css/uikit.gradient.min.css’);

As well as removing those and manually loading them from CDNs in index.html. Same effect either way.

Suggestions?

https://github.com/ember-cli/ember-cli/issues/4501