Allow Rasters to be created directly from id strings.

This commit is contained in:
Jürg Lehni 2011-03-05 14:17:32 +00:00
parent 8e25a951bc
commit 3f0a45a7c2

View file

@ -8,6 +8,9 @@ var Raster = this.Raster = Item.extend({
if (object.getContext) {
this.setCanvas(object);
} else {
// If it's a string, get the element with this id first.
if (typeof object == 'string')
object = document.getElementById(object);
this.setImage(object);
}
this.matrix = new Matrix();