removed the length check
updated it to @fat's suggestion
This commit is contained in:
parent
f152dead92
commit
e867ae7b60
1 changed files with 1 additions and 1 deletions
2
js/bootstrap-tooltip.js
vendored
2
js/bootstrap-tooltip.js
vendored
|
|
@ -127,7 +127,7 @@
|
|||
.detach()
|
||||
.css({ top: 0, left: 0, display: 'block' })
|
||||
|
||||
this.options.container && $tip.appendTo(this.options.container).length || $tip.insertAfter(this.$element)
|
||||
this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element)
|
||||
|
||||
pos = this.getPosition()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue