mirror of
https://github.com/twbs/bootstrap.git
synced 2025-01-30 22:52:24 +01:00
Merge pull request #6783 from joprice/popoverOptionsOverride
reordered access of options in tooltip and popover
This commit is contained in:
commit
6a9cd513c0
4
js/bootstrap-popover.js
vendored
4
js/bootstrap-popover.js
vendored
@ -58,8 +58,8 @@
|
|||||||
, $e = this.$element
|
, $e = this.$element
|
||||||
, o = this.options
|
, o = this.options
|
||||||
|
|
||||||
content = $e.attr('data-content')
|
content = (typeof o.content == 'function' ? o.content.call($e[0]) : o.content)
|
||||||
|| (typeof o.content == 'function' ? o.content.call($e[0]) : o.content)
|
|| $e.attr('data-content')
|
||||||
|
|
||||||
return content
|
return content
|
||||||
}
|
}
|
||||||
|
2
js/bootstrap-tooltip.js
vendored
2
js/bootstrap-tooltip.js
vendored
@ -67,7 +67,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
, getOptions: function (options) {
|
, getOptions: function (options) {
|
||||||
options = $.extend({}, $.fn[this.type].defaults, options, this.$element.data())
|
options = $.extend({}, $.fn[this.type].defaults, this.$element.data(), options)
|
||||||
|
|
||||||
if (options.delay && typeof options.delay == 'number') {
|
if (options.delay && typeof options.delay == 'number') {
|
||||||
options.delay = {
|
options.delay = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user