add missing semicolons
This commit is contained in:
parent
56c6ef98c7
commit
20b3508f86
1 changed files with 5 additions and 5 deletions
|
@ -154,7 +154,7 @@ Ox.load.Image = function(options, callback) {
|
|||
return rgb.concat(rgba[3]);
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
//@ context <o> 2D drawing context
|
||||
|
||||
|
@ -469,7 +469,7 @@ Ox.load.Image = function(options, callback) {
|
|||
}
|
||||
});
|
||||
return that;
|
||||
}
|
||||
};
|
||||
|
||||
/*@
|
||||
filter <f> Pixel-wise filter function
|
||||
|
@ -650,7 +650,7 @@ Ox.load.Image = function(options, callback) {
|
|||
});
|
||||
that.context.putImageData(self.imageData, 0, 0);
|
||||
return that;
|
||||
}
|
||||
};
|
||||
|
||||
/*@
|
||||
motionBlur <f> Apply motion blur filter
|
||||
|
@ -720,7 +720,7 @@ Ox.load.Image = function(options, callback) {
|
|||
height: height
|
||||
});
|
||||
return that;
|
||||
}
|
||||
};
|
||||
|
||||
/*@
|
||||
saturation <f> Apply saturation filter
|
||||
|
@ -756,7 +756,7 @@ Ox.load.Image = function(options, callback) {
|
|||
rgba[3]
|
||||
];
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
/*@
|
||||
src <f> Get or set the image source
|
||||
|
|
Loading…
Reference in a new issue