tooltip works!

pull/263/head
Justin Richer 2012-11-15 17:46:13 -05:00
parent 8ecdb8a4ab
commit 20b73ea0c4
1 changed files with 3 additions and 1 deletions

View File

@ -303,11 +303,13 @@
this.model.bind('change', this.render, this);
this.$('.dynamically-registered').popover({title: 'Dynamic', content: 'This client was dynamically registered'});
},
render:function (eventName) {
this.$el.html(this.template(this.model.toJSON()));
this.$('.dynamically-registered').tooltip({title: 'This client was dynamically registered'});
return this;
},