mirror of
https://github.com/konvajs/konva.git
synced 2025-06-28 15:23:44 +08:00
add missing semicolon
This commit is contained in:
parent
307dfcc911
commit
46e9243759
@ -206,14 +206,14 @@ suite('Stage', function() {
|
|||||||
test('dangling stage ', function() {
|
test('dangling stage ', function() {
|
||||||
var stage = addStage();
|
var stage = addStage();
|
||||||
var container = stage.container();
|
var container = stage.container();
|
||||||
var parent = stage.content.parentElement
|
var parent = stage.content.parentElement;
|
||||||
|
|
||||||
parent.removeChild(stage.content);
|
parent.removeChild(stage.content);
|
||||||
|
|
||||||
stage.setContainer(container);
|
stage.setContainer(container);
|
||||||
|
|
||||||
assert.equal(stage.container(), container);
|
assert.equal(stage.container(), container);
|
||||||
})
|
});
|
||||||
|
|
||||||
// ======================================================
|
// ======================================================
|
||||||
test('stage getIntersection()', function() {
|
test('stage getIntersection()', function() {
|
||||||
|
Loading…
Reference in New Issue
Block a user