Skip to content

Commit 608864d

Browse files
Merge pull request VincentGarreau#66 from VincentGarreau/pr/65
Pr/65
2 parents c46ff7a + e430b3c commit 608864d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

bower.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"name": "particles.js",
33
"main": "particles.js",
4-
"version": "2.0.0",
54
"homepage": "https://github.com/VincentGarreau/particles.js",
65
"authors": [
76
"Vincent Garreau <vin.garreau@gmail.com>"

particles.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
/* How to use? : Check the GitHub README
77
/* v2.0.0
88
/* ----------------------------------------------- */
9+
'use strict'
910

1011
var pJS = function(tag_id, params){
1112

@@ -1418,7 +1419,7 @@ Object.deepExtend = function(destination, source) {
14181419
if (source[property] && source[property].constructor &&
14191420
source[property].constructor === Object) {
14201421
destination[property] = destination[property] || {};
1421-
arguments.callee(destination[property], source[property]);
1422+
this.deepExtend(destination[property], source[property]);
14221423
} else {
14231424
destination[property] = source[property];
14241425
}
@@ -1538,4 +1539,4 @@ window.particlesJS.load = function(tag_id, path_config_json, callback){
15381539
};
15391540
xhr.send();
15401541

1541-
};
1542+
};

0 commit comments

Comments
 (0)