Selaa lähdekoodia

Add Wikipedia URLs

j433866 6 vuotta sitten
vanhempi
commit
f281a32a4e
2 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 1 1
      src/core/operations/BlurImage.mjs
  2. 1 1
      src/core/operations/ResizeImage.mjs

+ 1 - 1
src/core/operations/BlurImage.mjs

@@ -24,7 +24,7 @@ class BlurImage extends Operation {
         this.name = "Blur Image";
         this.name = "Blur Image";
         this.module = "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.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.inputType = "byteArray";
         this.outputType = "byteArray";
         this.outputType = "byteArray";
         this.presentType = "html";
         this.presentType = "html";

+ 1 - 1
src/core/operations/ResizeImage.mjs

@@ -24,7 +24,7 @@ class ResizeImage extends Operation {
         this.name = "Resize Image";
         this.name = "Resize Image";
         this.module = "Image";
         this.module = "Image";
         this.description = "Resizes an image to the specified width and height values.";
         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.inputType = "byteArray";
         this.outputType = "byteArray";
         this.outputType = "byteArray";
         this.presentType = "html";
         this.presentType = "html";