Commit 1fe4ed88 authored by Joseph Price's avatar Joseph Price
Browse files

reordered access of options in tooltip and popover to allow overriding data attrs from js

parent dbe8aed7
Showing with 4 additions and 4 deletions
+4 -4
......@@ -58,8 +58,8 @@
, $e = this.$element
, o = this.options
content = $e.attr('data-content')
|| (typeof o.content == 'function' ? o.content.call($e[0]) : o.content)
content = (typeof o.content == 'function' ? o.content.call($e[0]) : o.content) ||
|| $e.attr('data-content')
return content
}
......@@ -111,4 +111,4 @@
return this
}
}(window.jQuery);
\ No newline at end of file
}(window.jQuery);
......@@ -67,7 +67,7 @@
}
, 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') {
options.delay = {
......
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