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?