This commit is contained in:
Anton Lavrenov 2020-09-14 13:04:44 -05:00
parent 1edb5ef55c
commit b939a6f48a
4 changed files with 1323 additions and 49 deletions

1364
konva.js

File diff suppressed because it is too large Load Diff

2
konva.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -234,7 +234,7 @@ beforeEach(function () {
this.currentTest.body.toLowerCase().indexOf('compare') !== -1
)
) {
console.error(this.currentTest.title);
// console.error(this.currentTest.title);
}
});
@ -250,7 +250,7 @@ afterEach(function () {
if (!isFailed && !isManual) {
Konva.stages.forEach(function (stage) {
// stage.destroy();
stage.destroy();
});
if (Konva.DD._dragElements.size) {
throw 'Why drag elements are not cleaned?';

View File

@ -3856,7 +3856,7 @@ suite('Transformer', function () {
assert.almostEqual(tr.y(), 100);
});
test.only('drag several nodes', function () {
test('drag several nodes', function () {
var stage = addStage();
var layer = new Konva.Layer();
stage.add(layer);