Skip to content

Commit

Permalink
fix(popover): since bootstrap 4.3.1, popovers sanitize their options …
Browse files Browse the repository at this point in the history
…which contains html
  • Loading branch information
rothmike committed Mar 7, 2019
1 parent 26a255d commit 09e51f1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/os/ui/popover/popover.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ os.ui.popover.PopoverCtrl.prototype.update_ = function() {
// Create the popover
this.popover_ = this.element_.popover({
'html': true,
'sanitize': false,
'placement': this.scope_['pos'] ? this.scope_['pos'] : 'bottom',
'trigger': 'manual',
'title': this.scope_['title'],
Expand Down

0 comments on commit 09e51f1

Please sign in to comment.