Changeset 45342
- Timestamp:
- 05/17/2019 04:24:44 AM (5 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Gruntfile.js
r45317 r45342 173 173 [ WORKING_DIR + 'wp-includes/js/jquery/jquery-migrate.min.js' ]: [ './node_modules/jquery-migrate/dist/jquery-migrate.min.js' ], 174 174 [ WORKING_DIR + 'wp-includes/js/jquery/jquery.form.js' ]: [ './node_modules/jquery-form/src/jquery.form.js' ], 175 [ WORKING_DIR + 'wp-includes/js/jquery/jquery.js' ]: [ './node_modules/jquery/dist/jquery.min.js' ],176 175 [ WORKING_DIR + 'wp-includes/js/masonry.min.js' ]: [ './node_modules/masonry-layout/dist/masonry.pkgd.min.js' ], 177 176 [ WORKING_DIR + 'wp-includes/js/twemoji.js' ]: [ './node_modules/twemoji/2/twemoji.js' ], -
trunk/package-lock.json
r45321 r45342 8996 8996 }, 8997 8997 "jquery": { 8998 "version": " 1.12.4",8999 "resolved": "https://registry.npmjs.org/jquery/-/jquery- 1.12.4.tgz",9000 "integrity": "sha 1-AeHfuikP5z3rp3zurLD5ui/sngw="8998 "version": "3.4.1", 8999 "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.4.1.tgz", 9000 "integrity": "sha512-36+AdBzCL+y6qjw5Tx7HgzeGCzC81MDDgaUP8ld2zhx58HdqXGoBd+tHdrBMiyjGQs0Hxs/MLZTu/eHNJJuWPw==" 9001 9001 }, 9002 9002 "jquery-color": { -
trunk/package.json
r45321 r45342 99 99 "formdata-polyfill": "3.0.13", 100 100 "imagesloaded": "3.2.0", 101 "jquery": "1.12.4",102 101 "jquery-color": "github:jquery/jquery-color#2.1.1", 103 102 "jquery-form": "4.2.1", -
trunk/src/wp-includes/script-loader.php
r45319 r45342 1013 1013 1014 1014 // jQuery 1015 $scripts->add( 'jquery', false, array( 'jquery-core', 'jquery-migrate' ), '1.12.4 ' );1016 $scripts->add( 'jquery-core', '/wp-includes/js/jquery/jquery.js', array(), '1.12.4 ' );1015 $scripts->add( 'jquery', false, array( 'jquery-core', 'jquery-migrate' ), '1.12.4-wp' ); 1016 $scripts->add( 'jquery-core', '/wp-includes/js/jquery/jquery.js', array(), '1.12.4-wp' ); 1017 1017 $scripts->add( 'jquery-migrate', "/wp-includes/js/jquery/jquery-migrate$suffix.js", array(), '1.4.1' ); 1018 1018
Note: See TracChangeset
for help on using the changeset viewer.