Add Wikipedia URLs

This commit is contained in:
j433866 2019-03-04 13:48:13 +00:00
parent d09e6089ca
commit f281a32a4e
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@ class BlurImage extends Operation {
this.name = "Blur Image";
this.module = "Image";
this.description = "Applies a blur effect to the image.<br><br>Gaussian blur is much slower than fast blur, but produces better results.";
this.infoURL = "";
this.infoURL = "https://wikipedia.org/wiki/Gaussian_blur";
this.inputType = "byteArray";
this.outputType = "byteArray";
this.presentType = "html";

View file

@ -24,7 +24,7 @@ class ResizeImage extends Operation {
this.name = "Resize Image";
this.module = "Image";
this.description = "Resizes an image to the specified width and height values.";
this.infoURL = "";
this.infoURL = "https://wikipedia.org/wiki/Image_scaling";
this.inputType = "byteArray";
this.outputType = "byteArray";
this.presentType = "html";