Commit 41628c90 authored by Stefan Neculai's avatar Stefan Neculai
Browse files

Fix popover when using append.

parent d74aee40
Showing with 1 addition and 1 deletion
+1 -1
......@@ -44,7 +44,7 @@
var content = this.getContent()
$tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
$tip.find('.popover-content')[ // we use append for html objects to maintain js events
$tip.find('.popover-content').empty()[ // we use append for html objects to maintain js events
this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text'
](content)
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment