updated overloaded docs for d&d, node, shape, stage, sprite, text, and wedge

This commit is contained in:
Eric Rowell
2014-01-07 23:56:49 -08:00
parent 4d8ee45f71
commit fc8273e792
9 changed files with 129 additions and 174 deletions

View File

@@ -19,7 +19,7 @@ suite('DragAndDrop', function() {
layer.draw();
// test defaults
assert.equal(circle.isDraggable(), false);
assert.equal(circle.draggable(), false);
//change properties
circle.setDraggable(true);

View File

@@ -523,7 +523,7 @@ suite('Node', function() {
assert.equal(clone.getY(), 0);
assert.equal(clone.getDraggable(), true);
// test alias
assert.equal(clone.isDraggable(), true);
assert.equal(clone.draggable(), true);
assert.equal(clone.getName(), 'groupClone');
assert.equal(group.getChildren().length, 2);