Skip to content

Commit

Permalink
Build Node. No -min changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
ericf committed Oct 31, 2012
1 parent c3e7121 commit 32bf66b
Show file tree
Hide file tree
Showing 3 changed files with 282 additions and 273 deletions.
541 changes: 272 additions & 269 deletions build/node-core/node-core-coverage.js

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions build/node-core/node-core-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -615,11 +615,14 @@ Y.mix(Y_Node.prototype, {
},

/**
* Retrieves a Node instance of nodes based on the given CSS selector.
* Retrieves a single Node instance, the first element matching the given
* CSS selector.
* Returns null if no match found.
* @method one
*
* @param {string} selector The CSS selector to test against.
* @return {Node} A Node instance for the matching HTMLElement.
* @return {Node | null} A Node instance for the matching HTMLElement or null
* if no match found.
*/
one: function(selector) {
return Y.one(Y.Selector.query(selector, this._node, true));
Expand Down
7 changes: 5 additions & 2 deletions build/node-core/node-core.js
Original file line number Diff line number Diff line change
Expand Up @@ -614,11 +614,14 @@ Y.mix(Y_Node.prototype, {
},

/**
* Retrieves a Node instance of nodes based on the given CSS selector.
* Retrieves a single Node instance, the first element matching the given
* CSS selector.
* Returns null if no match found.
* @method one
*
* @param {string} selector The CSS selector to test against.
* @return {Node} A Node instance for the matching HTMLElement.
* @return {Node | null} A Node instance for the matching HTMLElement or null
* if no match found.
*/
one: function(selector) {
return Y.one(Y.Selector.query(selector, this._node, true));
Expand Down

0 comments on commit 32bf66b

Please sign in to comment.