diff --git a/source/Image/Image.js b/source/Image/Image.js index 02de0055..9b905fa8 100644 --- a/source/Image/Image.js +++ b/source/Image/Image.js @@ -16,9 +16,9 @@ Ox.load.Image = function(options, callback) { background <[n]> Background color (RGB or RGBA) callback Callback function image Image object - > Ox.Image(1, 1, [255, 0, 0], function(i) { Ox.test(i.pixel([0, 0]), [255, 0, 0, 255]); }) + @ Ox.Image(1, 1, [255, 0, 0], function(i) { Ox.test(i.pixel([0, 0]), [255, 0, 0, 255]); }) undefined - > Ox.Image(Ox.UI.PATH + 'themes/oxlight/png/icon16.png', function(i) { i.encode('foo', function(i) { i.decode(function(s) { Ox.test(s, 'foo'); })})}) + @ Ox.Image(Ox.UI.PATH + 'themes/oxlight/png/icon16.png', function(i) { i.encode('foo', function(i) { i.decode(function(s) { Ox.test(s, 'foo'); })})}) undefined @*/ Ox.Image = function() {