I am relatively new to both Ember.js and Ember-cli and would really appreciate some help please with using a jquery tooltip in a custom view. All code is below, but when my
There are some issues in the code but just regarding error, Its coz you need to import the tooltip
library(js file) into ember-cli. It is done in brocfile.js before calling app.toTree()
like below
app.import('vendor/tooltip.js');
Follow the link for more details. http://www.ember-cli.com/#managing-dependencies
Solved as follows:
bower install --save jquery-ui
app.import('bower_components/jquery-ui/jquery-ui.js');
app.import('bower_components/jquery-ui/ui/tooltip.js');
this.$()
should be used, not Ember.$()
Try ember-cli tool-tipster
.....works great.