Skip to content

Commit 8f8f62c

Browse files
authored
All: Fix links reported by hydra-link-checker
Closes gh-1232
1 parent 753b2ee commit 8f8f62c

11 files changed

+20
-20
lines changed

categories.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<p>For more information, see the Release Notes/Changelog at <a href="https://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/">https://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/</a></p>
6262
]]></desc>
6363
</category>
64-
<category name="Deprecated 1.10" slug="deprecated-1.10">
64+
<category name="Deprecated 1.10" slug="deprecated-1.10-and-2.0">
6565
<desc><![CDATA[All the aspects of the API that were deprecated in the corresponding version of jQuery.
6666
<p>For more information, see the Release Notes/Changelog at <a href="https://blog.jquery.com/2013/05/24/jquery-1-10-0-and-2-0-1-released/">https://blog.jquery.com/2013/05/24/jquery-1-10-0-and-2-0-1-released/</a></p>
6767
]]></desc>
@@ -401,8 +401,8 @@ var files = event.originalEvent.dataTransfer.files;
401401
<category name="Version 1.5" slug="1.5">
402402
<desc><![CDATA[
403403
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
404-
<p>jQuery 1.5 also includes a large rewrite of the Ajax module, which has a number of extensibility improvements. You can find out more about those improvements in the <a href="https://api.jquery.com/extending-ajax/">Extending Ajax</a> documentation.</p>
405-
<p>Additionally jQuery 1.5 includes a new Deferred callback management system you can learn more about in in the <a href="https://api.jquery.com/category/deferred-object/">Deferred Object</a> documentation.</p>
404+
<p>jQuery 1.5 also includes a large rewrite of the Ajax module, which has a number of extensibility improvements. You can find out more about those improvements in the <a href="https://api.jquery.com/jQuery.ajax/#extending-ajax">Extending Ajax</a> documentation.</p>
405+
<p>Additionally, jQuery 1.5 includes a new Deferred callback management system you can learn more about in the <a href="https://api.jquery.com/category/deferred-object/">Deferred Object</a> documentation.</p>
406406
]]></desc>
407407
</category>
408408
<category name="Version 1.5.1" slug="1.5.1">

entries/context.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0"?>
2-
<entry type="property" name="context" return="Element" deprecated="1.10" removed="3.0">
2+
<entry type="property" name="context" return="Element" deprecated="1.10-and-2.0" removed="3.0">
33
<title>.context</title>
44
<signature>
55
<added>1.3</added>
@@ -24,6 +24,6 @@ $( "ul" )
2424
<category slug="internals"/>
2525
<category slug="properties/jquery-object-instance-properties"/>
2626
<category slug="version/1.3"/>
27-
<category slug="deprecated/deprecated-1.10"/>
27+
<category slug="deprecated/deprecated-1.10-and-2.0"/>
2828
<category slug="removed"/>
2929
</entry>

entries/innerHeight.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,15 @@ $( "p" ).last().text( "innerHeight:" + p.innerHeight() );
4444

4545
<entry type="method" name="innerHeight" return="jQuery">
4646
<signature>
47-
<added>1.8.0</added>
47+
<added>1.8</added>
4848
<argument name="value">
4949
<type name="String"/>
5050
<type name="Number"/>
5151
<desc>A number representing the number of pixels, or a number along with an optional unit of measure appended (as a string).</desc>
5252
</argument>
5353
</signature>
5454
<signature>
55-
<added>1.8.0</added>
55+
<added>1.8</added>
5656
<argument name="function" type="Function">
5757
<argument name="index" type="Integer" />
5858
<argument name="height" type="Number" />

entries/innerWidth.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ $( "p" ).last().text( "innerWidth:" + p.innerWidth() );
4343

4444
<entry type="method" name="innerWidth" return="jQuery">
4545
<signature>
46-
<added>1.8.0</added>
46+
<added>1.8</added>
4747
<argument name="value">
4848
<type name="String"/>
4949
<type name="Number"/>
5050
<desc>A number representing the number of pixels, or a number along with an optional unit of measure appended (as a string).</desc>
5151
</argument>
5252
</signature>
5353
<signature>
54-
<added>1.8.0</added>
54+
<added>1.8</added>
5555
<argument name="function" type="Function">
5656
<argument name="index" type="Integer" />
5757
<argument name="width" type="Number" />

entries/jQuery.ajax.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ $.ajax({
138138
<type name="Function"/>
139139
<desc>Specify the callback function name for a JSONP request. This value will be used instead of the random name automatically generated by jQuery. It is preferable to let jQuery generate a unique name as it'll make it easier to manage the requests and provide callbacks and error handling. You may want to specify the callback when you want to enable better browser caching of GET requests. <strong>As of jQuery 1.5</strong>, you can also use a function for this setting, in which case the value of <code>jsonpCallback</code> is set to the return value of that function.</desc>
140140
</property>
141-
<property default="'GET'" name="method" type="String" added="1.9.0">
141+
<property default="'GET'" name="method" type="String" added="1.9">
142142
<desc>The HTTP method to use for the request (e.g. <code>"POST"</code>, <code>"GET"</code>, <code>"PUT"</code>).</desc>
143143
</property>
144144
<property name="mimeType" type="String" added="1.5.1">
@@ -150,7 +150,7 @@ $.ajax({
150150
<property default="true" name="processData" type="Boolean">
151151
<desc>By default, data passed in to the <code>data</code> option as an object (technically, anything other than a string) will be processed and transformed into a query string, fitting to the default content-type "application/x-www-form-urlencoded". If you want to send a DOMDocument, or other non-processed data, set this option to <code>false</code>.</desc>
152152
</property>
153-
<property name="scriptAttrs" type="PlainObject" added="3.4.0">
153+
<property name="scriptAttrs" type="PlainObject" added="3.4">
154154
<desc>Defines an object with additional attributes to be used in a "script" or "jsonp" request. The key represents the name of the attribute and the value is the attribute's value. If this object is provided it will force the use of a script-tag transport. For example, this can be used to set <code>nonce</code>, <code>integrity</code>, or <code>crossorigin</code> attributes to satisfy Content Security Policy requirements.</desc>
155155
</property>
156156
<property name="scriptCharset" type="String">

entries/jQuery.cssHooks.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ if ( $.support.someCSSProp &amp;&amp; $.support.someCSSProp !== "someCSSProp" )
163163
})( jQuery );
164164
</code></pre>
165165
<h4 id="special-units">Special units</h4>
166-
<p>By default, jQuery adds a "px" unit to the values passed to the <code>.css()</code> method. This behavior can be prevented by adding the property to the <a href="/jQuery.cssNumer/"><code>jQuery.cssNumber</code></a> object</p>
166+
<p>By default, jQuery adds a "px" unit to the values passed to the <code>.css()</code> method. This behavior can be prevented by adding the property to the <a href="/jQuery.cssNumber/"><code>jQuery.cssNumber</code></a> object</p>
167167
<pre><code>
168168
$.cssNumber.someCSSProp = true;
169169
</code></pre>

entries/jQuery.globalEval.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</argument>
99
</signature>
1010
<signature>
11-
<added>3.4.0</added>
11+
<added>3.4</added>
1212
<argument name="code" type="String">
1313
<desc>The JavaScript code to execute.</desc>
1414
</argument>
@@ -19,7 +19,7 @@
1919
</argument>
2020
</signature>
2121
<signature>
22-
<added>3.5.0</added>
22+
<added>3.5</added>
2323
<argument name="code" type="String">
2424
<desc>The JavaScript code to execute.</desc>
2525
</argument>

entries/outerHeight.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ $( "p" ).last().text(
4747

4848
<entry type="method" name="outerHeight" return="jQuery">
4949
<signature>
50-
<added>1.8.0</added>
50+
<added>1.8</added>
5151
<argument name="value">
5252
<type name="String"/>
5353
<type name="Number"/>
@@ -58,7 +58,7 @@ $( "p" ).last().text(
5858
</argument>
5959
</signature>
6060
<signature>
61-
<added>1.8.0</added>
61+
<added>1.8</added>
6262
<argument name="function" type="Function">
6363
<argument name="index" type="Integer" />
6464
<argument name="height" type="Number" />

entries/outerWidth.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ $( "p" ).last().text(
4747

4848
<entry type="method" name="outerWidth" return="jQuery">
4949
<signature>
50-
<added>1.8.0</added>
50+
<added>1.8</added>
5151
<argument name="value">
5252
<type name="String"/>
5353
<type name="Number"/>
@@ -58,7 +58,7 @@ $( "p" ).last().text(
5858
</argument>
5959
</signature>
6060
<signature>
61-
<added>1.8.0</added>
61+
<added>1.8</added>
6262
<argument name="function" type="Function">
6363
<argument name="index" type="Integer" />
6464
<argument name="width" type="Number" />

notes.xsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
Selected elements are in the order of their appearance in the document.
1818
</xsl:when>
1919
<xsl:when test="@id = 'domlint'">
20-
Forms and their child elements should not use input names or ids that conflict with properties of a form, such as <code>submit</code>, <code>length</code>, or <code>method</code>. Name conflicts can cause confusing failures. For a complete list of rules and to check your markup for these problems, see <a href="https://kangax.github.com/domlint/">DOMLint</a>.
20+
Forms and their child elements should not use input names or ids that conflict with properties of a form, such as <code>submit</code>, <code>length</code>, or <code>method</code>. Name conflicts can cause confusing failures. For a complete list of rules and to check your markup for these problems, see <a href="https://kangax.github.io/domlint/">DOMLint</a>.
2121
</xsl:when>
2222
<xsl:when test="@id = 'hidden-element-dimensions'">
2323
The value reported by <code><xsl:value-of select="@data-title" /></code> is not guaranteed to be accurate when the element or its parent is hidden. To get an accurate value, ensure the element is visible before using <code><xsl:value-of select="@data-title" /></code>. jQuery will attempt to temporarily show and then re-hide an element in order to measure its dimensions, but this is unreliable and (even when accurate) can significantly impact page performance. This show-and-rehide measurement feature may be removed in a future version of jQuery.

pages/Types.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ <h3 id="Iteration"> Iteration </h3>
300300
alert( "key is " + [ key ] + ", value is " + obj[ key ] );
301301
}
302302
</code></pre>
303-
<p>Note that for-in-loop can be spoiled by extending Object.prototype (see <a href="http://erik.eae.net/archives/2005/06/06/22.13.54/" class="external text" title="http://erik.eae.net/archives/2005/06/06/22.13.54/">Object.prototype is verboten</a>) so take care when using other libraries.
303+
<p>Note that for-in-loop can be spoiled by extending <code>Object.prototype</code> (see <a href="https://web.archive.org/web/20200416084623/https://erik.eae.net/archives/2005/06/06/22.13.54/" class="external text" title="https://web.archive.org/web/20200416084623/https://erik.eae.net/archives/2005/06/06/22.13.54/">Object.prototype is verboten</a>) so take care when using other libraries.
304304
</p>
305305
<p>jQuery provides a generic <a href="/jQuery.each/"><em>each</em> function</a> to iterate over properties of objects, as well as elements of arrays:
306306
</p>

0 commit comments

Comments
 (0)