Tooltips should now be attached to a container close to the target element while avoiding button/input groups.
parent
d1df5ed7cd
commit
1b3993bf6a
@ -1,8 +1,29 @@
|
|||||||
var $ = require('jquery');
|
var $ = require('jquery');
|
||||||
|
require('bootstrap');
|
||||||
|
|
||||||
|
var Tooltip = $.fn.tooltip.Constructor;
|
||||||
|
|
||||||
|
var origGetOptions = Tooltip.prototype.getOptions;
|
||||||
|
Tooltip.prototype.getOptions = function(options) {
|
||||||
|
var result = origGetOptions.call(this, options);
|
||||||
|
|
||||||
|
if (result.container === false) {
|
||||||
|
|
||||||
|
var container = this.$element.closest('.btn-group,.input-group').parent();
|
||||||
|
|
||||||
|
if (container.length) {
|
||||||
|
result.container = container;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
};
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
appInitializer : function(){
|
appInitializer : function() {
|
||||||
|
|
||||||
$('body').tooltip({selector : '[title]'});
|
$('body').tooltip({selector : '[title]'});
|
||||||
|
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
};
|
};
|
Loading…
Reference in new issue