Fix white-space in code example.

This commit is contained in:
Jürg Lehni 2011-11-12 23:56:25 +01:00
parent 36846d6e38
commit 18d44689fa

View file

@ -141,7 +141,7 @@ var Key = this.Key = new function() {
* // 'a' key is pressed, fill it with red, otherwise fill it with blue:
* function onMouseDown(event) {
* var path = new Path.Circle(event.point, 10);
* if(Key.isDown('a')) {
* if (Key.isDown('a')) {
* path.fillColor = 'red';
* } else {
* path.fillColor = 'blue';