Search code examples
ember.jszurb-foundation-5

Zurb Foundation tooltip stays on the screen


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?


Solution

  • This would work:

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