From e6e4d93d5e9b991868341ca6086cdb498ce7ba71 Mon Sep 17 00:00:00 2001 From: Swaagie Date: Tue, 27 Nov 2012 15:07:31 +0100 Subject: [PATCH] leave it to the developer to decide how to use the content of the popover --- js/bootstrap-popover.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/bootstrap-popover.js b/js/bootstrap-popover.js index 0afe7ec3b2..28138765f3 100644 --- a/js/bootstrap-popover.js +++ b/js/bootstrap-popover.js @@ -44,7 +44,7 @@ , content = this.getContent() $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title) - $tip.find('.popover-content > *')[this.options.html ? 'html' : 'text'](content) + $tip.find('.popover-content')[this.options.html ? 'html' : 'text'](content) $tip.removeClass('fade top bottom left right in') } @@ -97,7 +97,7 @@ placement: 'right' , trigger: 'click' , content: '' - , template: '

' + , template: '

' }) -}(window.jQuery); \ No newline at end of file +}(window.jQuery);