Skip to content

Fix for issue #496 #497

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
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
23 changes: 5 additions & 18 deletions entries/prop.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
<entries>
<desc>Get the value of a property for the first element in the set of matched elements or set one or more properties for every matched element.</desc>
<entry type="method" name="prop">
<return type="String"/>
<return type="Integer"/>
<return type="Boolean"/>
<return type="Anything"/>
<title>.prop()</title>
<signature>
<added>1.6</added>
Expand Down Expand Up @@ -115,10 +113,7 @@ $( "input" ).change(function() {
<argument name="propertyName" type="String">
<desc>The name of the property to set.</desc>
</argument>
<argument name="value">
<type name="String"/>
<type name="Number"/>
<type name="Boolean"/>
<argument name="value" type="Anything">
<desc>A value to set for the property.</desc>
</argument>
</signature>
Expand All @@ -134,17 +129,9 @@ $( "input" ).change(function() {
<desc>The name of the property to set.</desc>
</argument>
<argument name="function" type="Function">
<argument name="index" type="Integer" />
<argument name="oldPropertyValue">
<type name="String"/>
<type name="Number"/>
<type name="Boolean"/>
</argument>
<return>
<type name="String"/>
<type name="Number"/>
<type name="Boolean"/>
</return>
<argument name="index" type="Integer" />
<argument name="oldPropertyValue" type="Anything" />
<return type="Anything" />
<desc>A function returning the value to set. Receives the index position of the element in the set and the old property value as arguments. Within the function, the keyword <code>this</code> refers to the current element.</desc>
</argument>
</signature>
Expand Down