Skip to content

Commit

Permalink
document val arg for setData [fixes 2528802]
Browse files Browse the repository at this point in the history
  • Loading branch information
msweeney committed Apr 22, 2010
1 parent 0db0cf6 commit f8b3df7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions build/node/node-base-debug.js
Expand Up @@ -1035,6 +1035,7 @@ Y.mix(Y_Node.prototype, {
* This is not stored with the DOM node.
* @param {string} name The name of the field to set. If no name
* is given, name is treated as the data and overrides any existing data.
* @param {any} val The value to be assigned to the field.
* @chainable
*/
setData: function(name, val) {
Expand Down
1 change: 1 addition & 0 deletions build/node/node-base.js
Expand Up @@ -1027,6 +1027,7 @@ Y.mix(Y_Node.prototype, {
* This is not stored with the DOM node.
* @param {string} name The name of the field to set. If no name
* is given, name is treated as the data and overrides any existing data.
* @param {any} val The value to be assigned to the field.
* @chainable
*/
setData: function(name, val) {
Expand Down
1 change: 1 addition & 0 deletions build/node/node-debug.js
Expand Up @@ -1035,6 +1035,7 @@ Y.mix(Y_Node.prototype, {
* This is not stored with the DOM node.
* @param {string} name The name of the field to set. If no name
* is given, name is treated as the data and overrides any existing data.
* @param {any} val The value to be assigned to the field.
* @chainable
*/
setData: function(name, val) {
Expand Down
1 change: 1 addition & 0 deletions build/node/node.js
Expand Up @@ -1027,6 +1027,7 @@ Y.mix(Y_Node.prototype, {
* This is not stored with the DOM node.
* @param {string} name The name of the field to set. If no name
* is given, name is treated as the data and overrides any existing data.
* @param {any} val The value to be assigned to the field.
* @chainable
*/
setData: function(name, val) {
Expand Down
1 change: 1 addition & 0 deletions src/node/js/node.js
Expand Up @@ -1033,6 +1033,7 @@ Y.mix(Y_Node.prototype, {
* This is not stored with the DOM node.
* @param {string} name The name of the field to set. If no name
* is given, name is treated as the data and overrides any existing data.
* @param {any} val The value to be assigned to the field.
* @chainable
*/
setData: function(name, val) {
Expand Down

0 comments on commit f8b3df7

Please sign in to comment.