Skip to content

Commit 83c5f3d

Browse files
committed
Release v1.11.2
1 parent 66fc786 commit 83c5f3d

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

dist/hello.all.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! hellojs v1.11.1 | (c) 2012-2016 Andrew Dodson | MIT https://adodson.com/hello.js/LICENSE */
1+
/*! hellojs v1.11.2 | (c) 2012-2016 Andrew Dodson | MIT https://adodson.com/hello.js/LICENSE */
22
// ES5 Object.create
33
if (!Object.create) {
44

@@ -2211,7 +2211,7 @@ hello.utils.extend(hello.utils, {
22112211
// Create a clone of an object
22122212
clone: function(obj) {
22132213
// Does not clone DOM elements, nor Binary data, e.g. Blobs, Filelists
2214-
if (obj === null || typeof (obj) !== 'object' || obj instanceof Date || 'nodeName' in obj || this.isBinary(obj)) {
2214+
if (obj === null || typeof (obj) !== 'object' || obj instanceof Date || 'nodeName' in obj || this.isBinary(obj) || (typeof FormData === 'function' && obj instanceof FormData)) {
22152215
return obj;
22162216
}
22172217

dist/hello.all.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/hello.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! hellojs v1.11.1 | (c) 2012-2016 Andrew Dodson | MIT https://adodson.com/hello.js/LICENSE */
1+
/*! hellojs v1.11.2 | (c) 2012-2016 Andrew Dodson | MIT https://adodson.com/hello.js/LICENSE */
22
// ES5 Object.create
33
if (!Object.create) {
44

@@ -2211,7 +2211,7 @@ hello.utils.extend(hello.utils, {
22112211
// Create a clone of an object
22122212
clone: function(obj) {
22132213
// Does not clone DOM elements, nor Binary data, e.g. Blobs, Filelists
2214-
if (obj === null || typeof (obj) !== 'object' || obj instanceof Date || 'nodeName' in obj || this.isBinary(obj)) {
2214+
if (obj === null || typeof (obj) !== 'object' || obj instanceof Date || 'nodeName' in obj || this.isBinary(obj) || (typeof FormData === 'function' && obj instanceof FormData)) {
22152215
return obj;
22162216
}
22172217

dist/hello.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hellojs",
3-
"version": "1.11.1",
3+
"version": "1.11.2",
44
"description": "A clientside Javascript library for standardizing requests to OAuth2 web services (and OAuth1 - with a shim)",
55
"homepage": "https://adodson.com/hello.js",
66
"main": "dist/hello.all.js",

0 commit comments

Comments
 (0)