Using jQuery UI with Ember CLI

Using jQuery UI with Ember CLI

So I'm pretty much having the exact problem listed here:  Using jquery in Ember-cli

But I've already done the following as recommended in the thread above:

Added before the export in Brocfile.js:

app.import('bower_components/jquery-ui/jquery-ui.js'); app.import('bower_components/jquery-ui/ui/tooltip.js');

Changed

Ember.$(selector).tooltip();

to

this.$(selector).tooltip();

Ember isn't recognizing the tooltip function as being defined despite UI being installed and doing the above.

Error (regarding the tooltip function):

Uncaught TypeError: undefined is not a function

Any help?