Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions entries/jQuery.extend.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<signature>
<added>1.0</added>
<argument name="target" type="Object">
<desc> An object that will receive the new properties if additional objects are passed in or that will extend the jQuery namespace if it is the sole argument.</desc>
<desc> An object that will receive the new properties.</desc>
</argument>
<argument name="object1" type="Object" optional="true">
<argument name="object1" type="Object">
<desc>An object containing additional properties to merge in.</desc>
</argument>
<argument name="objectN" optional="true" type="Object">
Expand All @@ -28,6 +28,12 @@
<desc>Additional objects containing properties to merge in.</desc>
</argument>
</signature>
<signature>
<added>1.0</added>
<argument name="object" type="Object">
<desc> An object to merge onto the jQuery namespace.</desc>
</argument>
</signature>
<desc>Merge the contents of two or more objects together into the first object.</desc>
<longdesc>
<p>When two or more object arguments are supplied to <code>$.extend()</code>, properties from all of the objects are added to the target object. Arguments that are <code>null</code> or <code>undefined</code> are ignored.</p>
Expand Down