diff options
| author | Mark Otto <[email protected]> | 2014-12-17 12:28:20 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-12-17 12:28:20 -0800 |
| commit | dab0b97ce4eb7903bcedd58afe861930a8707f12 (patch) | |
| tree | a0f93fe6271d7ec316aec5fea33613c38874dcb0 /js | |
| parent | 7d8bad586bb5862bff46db8126632e3846a1a60a (diff) | |
| parent | a8299b5b45f9b72829eead235524d2888eb2c03a (diff) | |
| download | bootstrap-dab0b97ce4eb7903bcedd58afe861930a8707f12.tar.xz bootstrap-dab0b97ce4eb7903bcedd58afe861930a8707f12.zip | |
Merge pull request #29 from twbs/ie9-minimum-docs
Remove ancillary references to IE<9 in comments+docs
Diffstat (limited to 'js')
| -rw-r--r-- | js/tooltip.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/tooltip.js b/js/tooltip.js index cda147d9c..bd376f772 100644 --- a/js/tooltip.js +++ b/js/tooltip.js @@ -231,7 +231,7 @@ var marginTop = parseInt($tip.css('margin-top'), 10) var marginLeft = parseInt($tip.css('margin-left'), 10) - // we must check for NaN for ie 8/9 + // we must check for NaN for IE9 if (isNaN(marginTop)) marginTop = 0 if (isNaN(marginLeft)) marginLeft = 0 |
