mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-09-17 16:11:28 +00:00
Formatting: add semi-colon to CPImage.j
Variable value assignment terminated in comma, despite not being a variable list. Replaced comma with semi-colon.
This commit is contained in:
+1
-1
@@ -246,7 +246,7 @@ function CPAppKitImage(aFilename, aSize)
|
||||
var canvas = document.createElement("canvas"),
|
||||
ctx = canvas.getContext("2d");
|
||||
|
||||
canvas.width = _image.width,
|
||||
canvas.width = _image.width;
|
||||
canvas.height = _image.height;
|
||||
|
||||
ctx.drawImage(_image, 0, 0);
|
||||
|
||||
Reference in New Issue
Block a user