don't set zoom class in frames.js

This commit is contained in:
Andrew Bauer 2020-12-09 18:19:10 -06:00
parent c43ffcf58f
commit 39023b3e7b
1 changed files with 1 additions and 2 deletions

View File

@ -118,8 +118,7 @@ function initPage() {
var thumb_ndx = $j('#framesTable tr th').filter(function() {
return $j(this).text().trim() == 'Thumbnail';
}).index();
var thmbClass = WEB_ANIMATE_THUMBS ? 'colThumbnail zoom' : 'colThumbnail';
table.find("tr td:nth-child(" + (thumb_ndx+1) + ")").addClass(thmbClass);
table.find("tr td:nth-child(" + (thumb_ndx+1) + ")").addClass('colThumbnail');
});
}