diff --git a/content/patterns/landmarks/js/image-resizing.js b/content/patterns/landmarks/js/image-resizing.js index 80b9d4fad..1a09b3879 100644 --- a/content/patterns/landmarks/js/image-resizing.js +++ b/content/patterns/landmarks/js/image-resizing.js @@ -1,4 +1,14 @@ -/* image-resizing.js */ +/* + * This content is licensed according to the W3C Software License at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document + * + * File: image-resizing.js + * + * Desc: Resizes images to fit in figure elements + */ + +'use strict'; + function resizeImagesInFigures () { const figures = document.querySelectorAll('#at figure'); for(let i = 0; i < figures.length; i += 1) {