2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-02 16:04:07 +03:00

don't remove title attribute for tooltips

fixes #6445
This commit is contained in:
pseidemann
2013-01-29 22:54:00 +01:00
parent 558bc52432
commit c4eea3abde
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -185,7 +185,7 @@
, fixTitle: function () {
var $e = this.$element
if ($e.attr('title') || typeof($e.attr('data-original-title')) != 'string') {
$e.attr('data-original-title', $e.attr('title') || '').removeAttr('title')
$e.attr('data-original-title', $e.attr('title') || '').attr('title', '')
}
}