Examples: Convert Path#selected to Path#fullySelected where needed.

This commit is contained in:
Jonathan Puckey 2011-06-20 17:16:27 +02:00
parent 80245301e7
commit f6fbccb7a2
4 changed files with 5 additions and 5 deletions
examples/Scripts

View file

@ -34,12 +34,12 @@
}
function onMouseDown(event) {
path.selected = true;
path.fullySelected = true;
path.strokeColor = '#e08285';
}
function onMouseUp(event) {
path.selected = false;
path.fullySelected = false;
path.strokeColor = '#e4141b';
}
</script>