Twitter bootstrap popover : How can I make the transition faster on popover('hide')?

611 Views Asked by At

Is it possible to make the hiding on popover a bit faster ?

I was trying to tinker with the 'hide' property but no luck so far.

$(this).popover({
    title: node.name,
    html: true,
    container: 'body',
    placement: 'right'
    hide: function() {
        $(this).animate(function() {
            //can something be done here? 
        });
    }
});

Thanks for help.

1

There are 1 best solutions below

0
On

Bootstrap popovers

$(this).popover({
    title: node.name,
    html: true,
    container: 'body',
    placement: 'right',
    delay: {"hide": 200} // as per the docs. Should require the quotation marks.... Try without if not hehe....
});