Skip to content

Commit 297d18d

Browse files
authored
CSS: Include show, hide & toggle methods in the jQuery slim build
The `show()`, `hide()` & `toggle()` methods were included in the 3.x jQuery slim build. The jQuery master build accidentally started to exclude them as they were only imported in the effects module and the new Rollup-based build system follows the module dependency graph when excluding modules. To resolve the issue, import the `css/showHide.js` file directly in the main `jquery.js` file. Closes gh-4704 Ref jquery/jquery-migrate#346
1 parent 3d62d57 commit 297d18d

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

src/jquery.js

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import "./manipulation/_evalUrl.js";
1616
import "./wrap.js";
1717
import "./css.js";
1818
import "./css/hiddenVisibleSelectors.js";
19+
import "./css/showHide.js";
1920
import "./serialize.js";
2021
import "./ajax.js";
2122
import "./ajax/xhr.js";

test/unit/css.js

-5
Original file line numberDiff line numberDiff line change
@@ -487,9 +487,6 @@ QUnit.test( "css(Object) where values are Functions with incoming values", funct
487487
jQuery( "#cssFunctionTest" ).remove();
488488
} );
489489

490-
// .show(), .hide(), can be excluded from the build
491-
if ( jQuery.fn.show && jQuery.fn.hide ) {
492-
493490
QUnit.test( "show()", function( assert ) {
494491

495492
assert.expect( 18 );
@@ -968,8 +965,6 @@ QUnit.test( "show/hide 3.0, inline hidden", function( assert ) {
968965
} );
969966
} );
970967

971-
}
972-
973968
QUnit[ QUnit.jQuerySelectors && jQuery.fn.toggle ? "test" : "skip" ]( "toggle()", function( assert ) {
974969
assert.expect( 9 );
975970
var div, oldHide,

0 commit comments

Comments
 (0)