Skip to content

Commit

Permalink
Build commit for 2531257.
Browse files Browse the repository at this point in the history
  • Loading branch information
TSHA committed Dec 9, 2011
1 parent aeffd1d commit f3b05e3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build/io-base/io-base-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -644,9 +644,9 @@ IO.prototype = {
sync = config.sync;
data = config.data;

// Serialize an object into a key-value string using
// Serialize an map object into a key-value string using
// querystring-stringify-simple.
if (Y.Lang.isObject(data) && !transaction.upload) {
if ((Y.Lang.isObject(data) && !data.nodeType) && !transaction.upload) {
data = Y.QueryString.stringify(data);
}

Expand Down
2 changes: 1 addition & 1 deletion build/io-base/io-base-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions build/io-base/io-base.js
Original file line number Diff line number Diff line change
Expand Up @@ -644,9 +644,9 @@ IO.prototype = {
sync = config.sync;
data = config.data;

// Serialize an object into a key-value string using
// Serialize an map object into a key-value string using
// querystring-stringify-simple.
if (Y.Lang.isObject(data) && !transaction.upload) {
if ((Y.Lang.isObject(data) && !data.nodeType) && !transaction.upload) {
data = Y.QueryString.stringify(data);
}

Expand Down

0 comments on commit f3b05e3

Please sign in to comment.