Blob in zim019

Blob in ZIM019 have some problem.

For some reason, a ZIM Circle cannot be tested against a string in 019. Looking into it.

if (shape=="circle" || shape == "rectangle" || shape =="triangle") {
	if (shape == "circle") shape = new zim.Circle(radius);
	if (shape == "rectangle") shape = new zim.Rectangle(radius*2,radius*2).centerReg({add:false});
	if (shape == "triangle") shape = new zim.Triangle(radius*2,radius*2,radius*2);
}

once the shape is a ZIM Circle, the next test is failing due to the test against a string. The two other shapes do not have that problem, if we switch the order, etc.

There is the answer... we were testing to see if we should set the return value of an object as ["circle"] like CreateJS does. I guess the test got left in there... and the answer is NO we should not.