diff options
| author | Adrien Jarthon <[email protected]> | 2015-03-29 19:16:59 +0200 |
|---|---|---|
| committer | Adrien Jarthon <[email protected]> | 2015-03-29 19:16:59 +0200 |
| commit | 5921724d9c22098326bed005884477d3e8b6ec44 (patch) | |
| tree | 50c10a46b60c8070526009b461973ea43cacc595 | |
| parent | df96c3e615919c008c113187ef07530a3bdc9f6f (diff) | |
| download | bootstrap-5921724d9c22098326bed005884477d3e8b6ec44.tar.xz bootstrap-5921724d9c22098326bed005884477d3e8b6ec44.zip | |
fixed IE incompatible CSS
| -rw-r--r-- | js/tests/unit/tooltip.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/tests/unit/tooltip.js b/js/tests/unit/tooltip.js index 21d264195..709f3937f 100644 --- a/js/tests/unit/tooltip.js +++ b/js/tests/unit/tooltip.js @@ -364,7 +364,7 @@ $(function () { QUnit.test('should be placed dynamically to viewport with the dynamic placement option', function (assert) { assert.expect(6) - var $style = $('<style> div[rel="tooltip"] { position: absolute; } #qunit-fixture { top: initial; left: initial } </style>').appendTo('head') + var $style = $('<style> div[rel="tooltip"] { position: absolute; } #qunit-fixture { top: inherit; left: inherit } </style>').appendTo('head') var $container = $('<div/>') .css({ position: 'relative', |
