diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2024-05-13 18:11:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-13 18:11:57 +0200 |
commit | ac8b1e4eee8682e6825730c4823036a90031edad (patch) | |
tree | 6a4207cebc3138de51e6ec776e6d36117fd0a665 /tests/unit | |
parent | 969d182963347830a78b291198f6f183fb65d8e6 (diff) | |
download | jquery-ui-ac8b1e4eee8682e6825730c4823036a90031edad.tar.gz jquery-ui-ac8b1e4eee8682e6825730c4823036a90031edad.zip |
Core: Make back compat disabled by default
Closes gh-2250
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/button/button.html | 2 | ||||
-rw-r--r-- | tests/unit/dialog/dialog.html | 2 | ||||
-rw-r--r-- | tests/unit/droppable/droppable.html | 3 | ||||
-rw-r--r-- | tests/unit/tabs/core.js | 6 | ||||
-rw-r--r-- | tests/unit/tooltip/tooltip.html | 2 |
5 files changed, 7 insertions, 8 deletions
diff --git a/tests/unit/button/button.html b/tests/unit/button/button.html index 6cf27fb33..1c3d10199 100644 --- a/tests/unit/button/button.html +++ b/tests/unit/button/button.html @@ -6,7 +6,7 @@ <script src="../../../external/requirejs/require.js"></script> <script src="../../lib/css.js" data-modules="core button"></script> - <script src="../../lib/bootstrap.js" data-widget="button" data-no-back-compat="true"></script> + <script src="../../lib/bootstrap.js" data-widget="button"></script> </head> <body> diff --git a/tests/unit/dialog/dialog.html b/tests/unit/dialog/dialog.html index bdba5e11c..30f22c60e 100644 --- a/tests/unit/dialog/dialog.html +++ b/tests/unit/dialog/dialog.html @@ -6,7 +6,7 @@ <script src="../../../external/requirejs/require.js"></script> <script src="../../lib/css.js" data-modules="core button dialog"></script> - <script src="../../lib/bootstrap.js" data-widget="dialog" data-no-back-compat="true"></script> + <script src="../../lib/bootstrap.js" data-widget="dialog"></script> </head> <body> diff --git a/tests/unit/droppable/droppable.html b/tests/unit/droppable/droppable.html index 5c3ec3dd9..e507bb561 100644 --- a/tests/unit/droppable/droppable.html +++ b/tests/unit/droppable/droppable.html @@ -6,8 +6,7 @@ <script src="../../../external/requirejs/require.js"></script> <script src="../../lib/css.js" data-modules="core"></script> - <script src="../../lib/bootstrap.js" data-widget="droppable" - data-no-back-compat="true"></script> + <script src="../../lib/bootstrap.js" data-widget="droppable"></script> </head> <body> diff --git a/tests/unit/tabs/core.js b/tests/unit/tabs/core.js index 7637cfb1f..0f9e7acbb 100644 --- a/tests/unit/tabs/core.js +++ b/tests/unit/tabs/core.js @@ -29,9 +29,9 @@ QUnit.test( "markup structure", function( assert ) { assert.hasClasses( tabs[ 2 ], "ui-tabs-tab" ); // DEPRECATED - assert.hasClasses( tabs[ 0 ], "ui-tab" ); - assert.hasClasses( tabs[ 1 ], "ui-tab" ); - assert.hasClasses( tabs[ 2 ], "ui-tab" ); + assert.lacksClasses( tabs[ 0 ], "ui-tab" ); + assert.lacksClasses( tabs[ 1 ], "ui-tab" ); + assert.lacksClasses( tabs[ 2 ], "ui-tab" ); assert.equal( tabs.length, 3, "There are exactly three tabs" ); assert.hasClasses( anchors[ 0 ], "ui-tabs-anchor" ); diff --git a/tests/unit/tooltip/tooltip.html b/tests/unit/tooltip/tooltip.html index b5561d926..8c6dec70d 100644 --- a/tests/unit/tooltip/tooltip.html +++ b/tests/unit/tooltip/tooltip.html @@ -6,7 +6,7 @@ <script src="../../../external/requirejs/require.js"></script> <script src="../../lib/css.js" data-modules="core tooltip"></script> - <script src="../../lib/bootstrap.js" data-widget="tooltip" data-no-back-compat="true"></script> + <script src="../../lib/bootstrap.js" data-widget="tooltip"></script> </head> <body> |