Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Twitter boot strap version 2.2.1

For me stay does not seem to work, the following code shows me a popup full of links, however moving from the element that triggers the popover to the popover its self causes it to fade away and

stay: true

does NOT work.

jQuery('#adminmenu li.wp-not-current-submenu.wp-has-submenu, .folded #adminmenu li.wp-has-submenu').popover({       
    html: true,
    stay: true,
    title: function() {
        var title = jQuery(this).find('a.menu-top').html();
        return title;
    },
    content: function() {
        var submenu = jQuery(this).find('.wp-submenu').html();
        return submenu;
    },
    placement: 'right',
    trigger: 'hover',

});

any ideas?

share|improve this question
What version of Twitter Bootstrap are we talking about? – Alexander Dec 11 '12 at 22:53
version 2.2.1 is the one I am using – Kyle Adams Dec 11 '12 at 22:54
github.com/twitter/bootstrap/blob/v2.2.1/js/… and github.com/twitter/bootstrap/blob/v2.2.1/js/… where is the "stay" option you are talking about? Also it does not appear to be in the documentation on the official site. nor does it appear if you look in the source code for the 2.2.1 gh-pages documentation. github.com/twitter/bootstrap/blob/v2.2.1/docs/javascript.html – rlemon Dec 11 '12 at 23:27
interesting concept - so I assumed wrong with out first reading. So - how would you make it stick so that you can select elements with out having to use click? – Kyle Adams Dec 11 '12 at 23:38
You should read :) – Alexander Dec 11 '12 at 23:40
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.