diff --git a/examples/Tools/Circles.html b/examples/Tools/Circles.html
index fc58b908..3095593c 100644
--- a/examples/Tools/Circles.html
+++ b/examples/Tools/Circles.html
@@ -31,6 +31,10 @@
path = new Path.Circle(event.downPoint, distance);
path.strokeColor = 'black';
path.fillColor = 'white';
+ },
+
+ onMouseUp: function(event) {
+ path = null;
}
});
tool.document = doc;