Skip to content

Commit 92aee17

Browse files
committed
Merge remote-tracking branch 'refs/remotes/dieg0v/master'
2 parents 41a1c61 + f773dc6 commit 92aee17

File tree

5 files changed

+18
-19
lines changed

5 files changed

+18
-19
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ Html5-canvas-particles
33

44
Html5 canvas particle generator with html export feature
55

6-
http://www.ensegundoplano.com/lab/html5-canvas-particles/
6+
http://www.dieg0v.com/lab/html5-canvas-particles/

export.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
/**
44
* @projectDescription Canvas Particles Test
55
*
6-
* @author Diego Vilariño - http://www.ensegundoplano.com - @ensegundoplano - http://www.sond3.com
6+
* @author Diego Vilariño - http://www.dieg0v.com - @dieg0v - http://www.sond3.com
77
* @version 0.1
88
*/
99

1010
extract($_POST);
1111
$data = '<!DOCTYPE html>
1212
<!--
1313
Generated by Canvas Particles Test Script on '.date("d/m/Y H:i:s").'
14-
Web: http://www.ensegundoplano.com/lab/html5-canvas-particles/
15-
GitHub: https://github.com/ensegundoplano/html5-canvas-particles/
14+
Web: http://www.dieg0v.com/lab/html5-canvas-particles/
15+
GitHub: https://github.com/dieg0v/html5-canvas-particles/
1616
-->
1717
<html>
1818
<head>

index.html

+12-13
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!--
22
@projectDescription Canvas Particles Test
33
4-
@author Diego Vilariño - http://www.ensegundoplano.com - @ensegundoplano - http://www.sond3.com
4+
@author Diego Vilariño - http://www.dieg0v.com - @dieg0v - http://www.sond3.com
55
@version 0.1
66
-->
77
<!DOCTYPE html>
@@ -10,13 +10,13 @@
1010
<meta charset="utf-8">
1111
<title>html5 canvas particle generator</title>
1212
<meta name="description" content="html5 canvas particle generato">
13-
<meta name="keywords" content="html5, canvas, particle, generator, ensegundoplano, diego, vilariño, sond3">
14-
<meta name="generator" content="ensegundoplano">
15-
<meta name="author" content="ensegundoplano">
13+
<meta name="keywords" content="html5, canvas, particle, generator, dieg0v, diego, vilariño, sond3">
14+
<meta name="generator" content="dieg0v">
15+
<meta name="author" content="dieg0v">
1616
<link type="text/css" href="styles.css" rel="stylesheet"/>
1717
</head>
1818
<body>
19-
<a href="https://github.com/ensegundoplano/Html5-canvas-particles" target="_blank"><img style="position: absolute; top: 0; left: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_left_white_ffffff.png" alt="Fork me on GitHub"></a>
19+
<a href="https://github.com/dieg0v/Html5-canvas-particles" target="_blank"><img style="position: absolute; top: 0; left: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_left_white_ffffff.png" alt="Fork me on GitHub"></a>
2020
<canvas id="canvas">
2121
Sorry, your browser cannot support canvas tag.
2222
</canvas>
@@ -28,15 +28,14 @@
2828
<script type="text/javascript" src="main.js"></script>
2929
<!-- GOOGLE STATS -->
3030
<script>
31-
var _gaq = _gaq || [];
32-
_gaq.push(['_setAccount', 'UA-2018596-4']);
33-
_gaq.push(['_trackPageview']);
31+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
32+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
33+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
34+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
35+
36+
ga('create', 'UA-2018596-8', 'dieg0v.com');
37+
ga('send', 'pageview');
3438

35-
(function() {
36-
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
37-
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
38-
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
39-
})();
4039
</script>
4140
<!-- /GOOGLE STATS -->
4241
</body>

main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* @projectDescription Canvas Particles Test
44
*
5-
* @author Diego Vilariño - http://www.ensegundoplano.com - @ensegundoplano - http://www.sond3.com
5+
* @author Diego Vilariño - http://www.dieg0v.com - @dieg0v - http://www.sond3.com
66
* @version 0.1
77
*/
88

styles.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @projectDescription Canvas Particles Test
33
*
4-
* @author Diego Vilariño - http://www.ensegundoplano.com - @ensegundoplano - http://www.sond3.com
4+
* @author Diego Vilariño - http://www.dieg0v.com - @dieg0v - http://www.sond3.com
55
* @version 0.1
66
*/
77

0 commit comments

Comments
 (0)