diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2022-01-04 16:27:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-04 16:27:18 +0100 |
commit | 5d5ea015114092c157311c4948f7cc3d8c8e7f8a (patch) | |
tree | 11beae372fc202638e16358f84f696c1e71a08c3 /test/unit/wrap.js | |
parent | 655c0ed5e204b1f6427e09d615a49586a7bc84eb (diff) | |
download | jquery-5d5ea015114092c157311c4948f7cc3d8c8e7f8a.tar.gz jquery-5d5ea015114092c157311c4948f7cc3d8c8e7f8a.zip |
Docs: Replace `#NUMBER` Trac issue references with `trac-NUMBER`
The GitHub UI treats `#NUMBER` as referring to its own issues which is confusing
when in jQuery source it's usually referring to the old deprecated Trac instance
at https://bugs.jquery.com. This change replaces all such Trac references with
`trac-NUMBER`.
A few of the references came with the Sizzle integration and referred to the
Sizzle GitHub bug tracker. Those have been replaced with full links instead.
A new entry describing issue reference conventions has been added to README.
Closes gh-4993
Diffstat (limited to 'test/unit/wrap.js')
-rw-r--r-- | test/unit/wrap.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/unit/wrap.js b/test/unit/wrap.js index 3c0990eac..1f920129e 100644 --- a/test/unit/wrap.js +++ b/test/unit/wrap.js @@ -47,11 +47,11 @@ function testWrap( val, assert ) { var checkbox = this; assert.ok( - checkbox.checked, "Checkbox's state is erased after wrap() action, see #769" + checkbox.checked, "Checkbox's state is erased after wrap() action, see trac-769" ); jQuery( checkbox ).wrap( val( "<div id='c1' style='display:none;'></div>" ) ); assert.ok( - checkbox.checked, "Checkbox's state is erased after wrap() action, see #769" + checkbox.checked, "Checkbox's state is erased after wrap() action, see trac-769" ); } ).prop( "checked", false )[ 0 ].click(); @@ -131,7 +131,7 @@ QUnit.test( "wrap(Function)", function( assert ) { testWrap( manipulationFunctionReturningObj, assert ); } ); -QUnit.test( "wrap(Function) with index (#10177)", function( assert ) { +QUnit.test( "wrap(Function) with index (trac-10177)", function( assert ) { var expectedIndex = 0, targets = jQuery( "#qunit-fixture p" ); @@ -147,7 +147,7 @@ QUnit.test( "wrap(Function) with index (#10177)", function( assert ) { } ); } ); -QUnit.test( "wrap(String) consecutive elements (#10177)", function( assert ) { +QUnit.test( "wrap(String) consecutive elements (trac-10177)", function( assert ) { var targets = jQuery( "#qunit-fixture p" ); assert.expect( targets.length * 2 ); @@ -484,7 +484,7 @@ QUnit.test( "unwrap( selector )", function( assert ) { jQuery( "body > span.unwrap" ).remove(); } ); -QUnit.test( "jQuery(<tag>) & wrap[Inner/All]() handle unknown elems (#10667)", function( assert ) { +QUnit.test( "jQuery(<tag>) & wrap[Inner/All]() handle unknown elems (trac-10667)", function( assert ) { assert.expect( 2 ); @@ -503,7 +503,7 @@ QUnit.test( "jQuery(<tag>) & wrap[Inner/All]() handle unknown elems (#10667)", f ); } ); -QUnit.test( "wrapping scripts (#10470)", function( assert ) { +QUnit.test( "wrapping scripts (trac-10470)", function( assert ) { assert.expect( 2 ); |