add missing semicolons

This commit is contained in:
rolux 2012-06-04 15:38:09 +02:00
parent 56c6ef98c7
commit 20b3508f86

View file

@ -154,7 +154,7 @@ Ox.load.Image = function(options, callback) {
return rgb.concat(rgba[3]); return rgb.concat(rgba[3]);
} }
}); });
} };
//@ context <o> 2D drawing context //@ context <o> 2D drawing context
@ -469,7 +469,7 @@ Ox.load.Image = function(options, callback) {
} }
}); });
return that; return that;
} };
/*@ /*@
filter <f> Pixel-wise filter function filter <f> Pixel-wise filter function
@ -650,7 +650,7 @@ Ox.load.Image = function(options, callback) {
}); });
that.context.putImageData(self.imageData, 0, 0); that.context.putImageData(self.imageData, 0, 0);
return that; return that;
} };
/*@ /*@
motionBlur <f> Apply motion blur filter motionBlur <f> Apply motion blur filter
@ -720,7 +720,7 @@ Ox.load.Image = function(options, callback) {
height: height height: height
}); });
return that; return that;
} };
/*@ /*@
saturation <f> Apply saturation filter saturation <f> Apply saturation filter
@ -756,7 +756,7 @@ Ox.load.Image = function(options, callback) {
rgba[3] rgba[3]
]; ];
}); });
} };
/*@ /*@
src <f> Get or set the image source src <f> Get or set the image source