diff options
| author | Mark Otto <[email protected]> | 2013-02-06 17:25:58 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-02-06 17:25:58 -0800 |
| commit | e3f3542d0b57fdcea0fbff2858b610f85a988d1d (patch) | |
| tree | 88537f3e886b64c3685abc998ccde95c233d0dc1 /docs/assets/js/bootstrap-tooltip.js | |
| parent | c8874ff2857bd2e0555dd2c43f50220c27827c9a (diff) | |
| download | bootstrap-e3f3542d0b57fdcea0fbff2858b610f85a988d1d.tar.xz bootstrap-e3f3542d0b57fdcea0fbff2858b610f85a988d1d.zip | |
Fixes #6823: add some docs notes about tooltips in input groups
Diffstat (limited to 'docs/assets/js/bootstrap-tooltip.js')
| -rw-r--r-- | docs/assets/js/bootstrap-tooltip.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/assets/js/bootstrap-tooltip.js b/docs/assets/js/bootstrap-tooltip.js index 915a87ea8..981319077 100644 --- a/docs/assets/js/bootstrap-tooltip.js +++ b/docs/assets/js/bootstrap-tooltip.js @@ -245,7 +245,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', '') } } |
