Home | History | Annotate | Download | only in resources

Lines Matching refs:thumbnail

20  * Selects an image thumbnail in the specified div.
30 // If the the current div matches the thumbnail id provided,
31 // or there is no thumbnail id given, and we're at the first thumbnail.
33 thumbnailDivs[i].className = 'image-thumbnail-container-selected';
37 thumbnailDivs[i].className = 'image-thumbnail-container';
43 * Adds an image thumbnail to the specified div.
47 thumbnailDiv.className = 'image-thumbnail-container';
56 innerDiv.className = 'image-thumbnail-current';
58 innerDiv.className = 'image-thumbnail';
60 var thumbnail = document.createElement('img');
61 thumbnail.id = thumbnailDiv.id + '-image';
64 thumbnail.src = screenshot + '?' + Date.now();
65 innerDiv.appendChild(thumbnail);