Skip to content

Commit

Permalink
removed built version, removed globalCompositeOperation=darker
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Alman authored and Ben Alman committed Aug 16, 2013
1 parent 4768bff commit 9513aa9
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 130 deletions.
20 changes: 0 additions & 20 deletions index-dev.html

This file was deleted.

2 changes: 1 addition & 1 deletion index.html
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>JavaScript Particle System</title>
<script src="js/vendor/require.js" data-main="js/main.built.js"></script>
<script src="js/vendor/require.js" data-main="js/main"></script>
<style>
body,html {
margin:0;
Expand Down
2 changes: 1 addition & 1 deletion js/lib/ParticleSystem.js
Expand Up @@ -162,7 +162,7 @@ define(
},
drawParticles : function () {
var display = this.display;
display.context.globalCompositeOperation = 'darker';
//display.context.globalCompositeOperation = 'darker';
display.context.fillStyle = 'rgba(' + Particle.color.join(',') + ')';
var size = Particle.size;
_(this.particles).each(function(particle){
Expand Down

0 comments on commit 9513aa9

Please sign in to comment.