Zurb Foundation tooltip stays on the screen

91 views Asked by At

zurb foundation tooltip stays on the screen after component removal/insertion: http://emberjs.jsbin.com/jutapilune/2/edit

There is a number of hacks floating around, but I wonder - maybe Ember community has resolved that issue already?

1

There are 1 answers

0
artych On BEST ANSWER

This would work:

actions: {
    remove: function(){
        this.$('button').remove();
    }
}