Skip to content

Commit

Permalink
Eradicated soft tabs in the examples.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Start committed Sep 14, 2015
1 parent 804e728 commit c78dbf1
Show file tree
Hide file tree
Showing 18 changed files with 201 additions and 201 deletions.
22 changes: 11 additions & 11 deletions examples/bubbleSpray.html
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Bubble Spray</title>
<meta name="description" content="bubble spray">
<link rel="stylesheet" href="css/main.css">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Bubble Spray</title>
<meta name="description" content="bubble spray">
<link rel="stylesheet" href="css/main.css">

<!-- Required dependencies -->
<!-- Required dependencies -->
<script src="libs/pixi.js/bin/pixi.js"></script>
<script src="../dist/pixi-particles.js"></script>

<!-- Example scaffolding -->
<script src="js/ParticleExample.js"></script>

</head>
<body>
</head>
<body>
<div id="framerate"></div>
<div id="instructions">Click Anywhere</div>
<canvas id="stage" width="400" height="400"></canvas>
Expand All @@ -24,7 +24,7 @@
// See js/ParticleExample.js for actual setup
new ParticleExample(
// The image to use
["images/Bubbles99.png"],
["images/Bubbles99.png"],

// Emitter configuration, edit this to change the look
// of the emitter
Expand Down Expand Up @@ -70,5 +70,5 @@
"spawnType": "point"
});
</script>
</body>
</body>
</html>
22 changes: 11 additions & 11 deletions examples/bubbleStream.html
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Bubble Stream</title>
<meta name="description" content="bubble stream">
<link rel="stylesheet" href="css/main.css">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Bubble Stream</title>
<meta name="description" content="bubble stream">
<link rel="stylesheet" href="css/main.css">

<!-- Required dependencies -->
<!-- Required dependencies -->
<script src="libs/pixi.js/bin/pixi.js"></script>
<script src="../dist/pixi-particles.js"></script>

<!-- Example scaffolding -->
<script src="js/ParticleExample.js"></script>

</head>
<body>
</head>
<body>
<div id="framerate"></div>
<div id="instructions">Click Anywhere</div>
<canvas id="stage" width="400" height="400"></canvas>
Expand All @@ -24,7 +24,7 @@
// See js/ParticleExample.js for actual setup
new ParticleExample(
// The image to use
["images/Bubbles99.png"],
["images/Bubbles99.png"],

// Emitter configuration, edit this to change the look
// of the emitter
Expand Down Expand Up @@ -70,5 +70,5 @@
"spawnType": "point"
});
</script>
</body>
</body>
</html>
32 changes: 16 additions & 16 deletions examples/bubbleStreamPath.html
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Bubble Stream (path following)</title>
<meta name="description" content="bubble stream">
<link rel="stylesheet" href="css/main.css">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Bubble Stream (path following)</title>
<meta name="description" content="bubble stream">
<link rel="stylesheet" href="css/main.css">

<!-- Required dependencies -->
<!-- Required dependencies -->
<script src="libs/pixi.js/bin/pixi.js"></script>
<script src="../dist/pixi-particles.js"></script>
<script src="../dist/modules/path-particle.js"></script>

<!-- Example scaffolding -->
<script src="js/ParticleExample.js"></script>

</head>
<body>
</head>
<body>
<div id="framerate"></div>
<div id="instructions">Click Anywhere</div>
<canvas id="stage" width="400" height="400"></canvas>
Expand Down Expand Up @@ -69,13 +69,13 @@
},
"addAtBack": false,
"spawnType": "point",
"extraData":
{
"path":"sin(x/10)*20"
}
"extraData":
{
"path":"sin(x/10)*20"
}
},
//tell the particle example to use cloudkid.PathParticle
"path");
//tell the particle example to use cloudkid.PathParticle
"path");
</script>
</body>
</body>
</html>
22 changes: 11 additions & 11 deletions examples/bubbles.html
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Bubbles</title>
<meta name="description" content="bubble emitter">
<link rel="stylesheet" href="css/main.css">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Bubbles</title>
<meta name="description" content="bubble emitter">
<link rel="stylesheet" href="css/main.css">

<!-- Required dependencies -->
<!-- Required dependencies -->
<script src="libs/pixi.js/bin/pixi.js"></script>
<script src="../dist/pixi-particles.js"></script>

<!-- Example scaffolding -->
<script src="js/ParticleExample.js"></script>

</head>
<body>
</head>
<body>
<div id="framerate"></div>
<div id="instructions">Click Anywhere</div>
<canvas id="stage" width="400" height="400"></canvas>
Expand All @@ -24,7 +24,7 @@
// See js/ParticleExample.js for actual setup
new ParticleExample(
// The image to use
["images/Bubbles99.png"],
["images/Bubbles99.png"],

// Emitter configuration, edit this to change the look
// of the emitter
Expand Down Expand Up @@ -70,5 +70,5 @@
"spawnType": "point"
});
</script>
</body>
</body>
</html>
22 changes: 11 additions & 11 deletions examples/bubblesVertical.html
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Vertical Bubbles</title>
<meta name="description" content="bubble area">
<link rel="stylesheet" href="css/main.css">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Vertical Bubbles</title>
<meta name="description" content="bubble area">
<link rel="stylesheet" href="css/main.css">

<!-- Required dependencies -->
<!-- Required dependencies -->
<script src="libs/pixi.js/bin/pixi.js"></script>
<script src="../dist/pixi-particles.js"></script>

<!-- Example scaffolding -->
<script src="js/ParticleExample.js"></script>

</head>
<body>
</head>
<body>
<div id="framerate"></div>
<div id="instructions">Click Anywhere</div>
<canvas id="stage" width="400" height="400"></canvas>
Expand All @@ -24,7 +24,7 @@
// See js/ParticleExample.js for actual setup
new ParticleExample(
// The image to use
["images/Bubbles99.png"],
["images/Bubbles99.png"],

// Emitter configuration, edit this to change the look
// of the emitter
Expand Down Expand Up @@ -76,5 +76,5 @@
}
});
</script>
</body>
</body>
</html>
20 changes: 10 additions & 10 deletions examples/cartoonSmoke.html
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Cartoon Smoke</title>
<meta name="description" content="smoke explosion">
<link rel="stylesheet" href="css/main.css">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Cartoon Smoke</title>
<meta name="description" content="smoke explosion">
<link rel="stylesheet" href="css/main.css">

<!-- Required dependencies -->
<!-- Required dependencies -->
<script src="libs/pixi.js/bin/pixi.js"></script>
<script src="../dist/pixi-particles.js"></script>

<!-- Example scaffolding -->
<script src="js/ParticleExample.js"></script>

</head>
<body>
</head>
<body>
<div id="framerate"></div>
<div id="instructions">Click Anywhere</div>
<canvas id="stage" width="400" height="400"></canvas>
Expand Down Expand Up @@ -69,5 +69,5 @@
"spawnType": "point"
});
</script>
</body>
</body>
</html>
22 changes: 11 additions & 11 deletions examples/cartoonSmoke2.html
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Cartoon Smoke 2</title>
<meta name="description" content="smoke explosion">
<link rel="stylesheet" href="css/main.css">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Cartoon Smoke 2</title>
<meta name="description" content="smoke explosion">
<link rel="stylesheet" href="css/main.css">

<!-- Required dependencies -->
<!-- Required dependencies -->
<script src="libs/pixi.js/bin/pixi.js"></script>
<script src="../dist/pixi-particles.js"></script>

<!-- Example scaffolding -->
<script src="js/ParticleExample.js"></script>

</head>
<body>
</head>
<body>
<div id="framerate"></div>
<div id="instructions">Click Anywhere</div>
<canvas id="stage" width="400" height="400"></canvas>
Expand All @@ -24,7 +24,7 @@
// See js/ParticleExample.js for actual setup
new ParticleExample(
// The image to use
["images/CartoonSmoke.png"],
["images/CartoonSmoke.png"],

// Emitter configuration, edit this to change the look
// of the emitter
Expand Down Expand Up @@ -69,5 +69,5 @@
"spawnType": "point"
});
</script>
</body>
</body>
</html>
20 changes: 10 additions & 10 deletions examples/cartoonSmokeBlast.html
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Cartoon Smoke Blast</title>
<meta name="description" content="smoke blast">
<link rel="stylesheet" href="css/main.css">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Cartoon Smoke Blast</title>
<meta name="description" content="smoke blast">
<link rel="stylesheet" href="css/main.css">

<!-- Required dependencies -->
<!-- Required dependencies -->
<script src="libs/pixi.js/bin/pixi.js"></script>
<script src="../dist/pixi-particles.js"></script>

<!-- Example scaffolding -->
<script src="js/ParticleExample.js"></script>

</head>
<body>
</head>
<body>
<div id="framerate"></div>
<div id="instructions">Click Anywhere</div>
<canvas id="stage" width="400" height="400"></canvas>
Expand Down Expand Up @@ -69,5 +69,5 @@
"spawnType": "point"
});
</script>
</body>
</body>
</html>
Loading

0 comments on commit c78dbf1

Please sign in to comment.