mirror of
https://github.com/konvajs/konva.git
synced 2025-11-18 17:21:36 +08:00
fixed up Canvas type bug. The Canvas constructor can now also take an optional isBuffer param. If not defined, default value is scene
This commit is contained in:
@@ -72,8 +72,6 @@ Test.prototype = {
|
||||
|
||||
// loop through modules
|
||||
for(var mod in modules) {
|
||||
console.log('=================== ' + mod + ' TESTS ===================');
|
||||
|
||||
var tests = modules[mod];
|
||||
/*
|
||||
* if a test key has a star in front of it, then
|
||||
@@ -86,6 +84,13 @@ Test.prototype = {
|
||||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
// loop through modules
|
||||
for(var mod in modules) {
|
||||
console.log('=================== ' + mod + ' TESTS ===================');
|
||||
|
||||
var tests = modules[mod];
|
||||
|
||||
// loop through tests
|
||||
for(var key in tests) {
|
||||
|
||||
Reference in New Issue
Block a user