DEV Community

Discussion on: VS Code Extension that Generates Documentation Using AI

Collapse
 
xapuu profile image
Xapuu

What sorcery is this :D , i guess i will be commenting my code from now on :D

/**
 * *When the user clicks on an image, set the focusedImageUrl to the image's url.*
 * @param imgUrl - The URL of the image to be displayed.
 * @returns None
 */
  focusImage(imgUrl) {
    this.focusedImageUrl = imgUrl;
  }
Enter fullscreen mode Exit fullscreen mode