Kinetic.Animation constructor now just requires a function and optional node. No more config object

This commit is contained in:
Eric Rowell
2012-11-15 21:30:58 -08:00
parent 694ced6b7a
commit 1913fed33b
7 changed files with 25 additions and 40 deletions

View File

@@ -94,7 +94,7 @@ Test.prototype = {
// loop through tests
for(var key in tests) {
if(!testOnlySpecial || key.charAt(0) === '*') {
if(key.charAt(0) !== 'x' && (!testOnlySpecial || key.charAt(0) === '*')) {
var obj = this.addTestContainer(key);
this.counter++;
console.log(this.counter + ') ' + key);