/* -----------------------------------------------1/* How to use? : Check the GitHub README2/* ----------------------------------------------- */34/* To load a config file (particles.json) you need to host this demo (MAMP/WAMP/local)... */5/*6particlesJS.load('particles-js', 'particles.json', function() {7console.log('particles.js loaded - callback');8});9*/1011/* Otherwise just put the config content (json): */1213particlesJS.load('particles-js', '../data/particles.json', function() {14console.log('particles.js loaded');15});1617