Make all outputImageStill calls have class="img-responsive"

This commit is contained in:
Kyle Johnson 2014-11-25 17:47:28 +00:00
parent 50b1a53369
commit 963e02a0a3
1 changed files with 1 additions and 1 deletions

View File

@ -401,7 +401,7 @@ title="<?= $title ?>">
function outputImageStill( $id, $src, $width, $height, $title="" )
{
?>
<img id="<?= $id ?>" src="<?= $src ?>" alt="<?= $title ?>" width="<?= $width ?>" height="<?= $height ?>"/>
<img class="img-responsive" id="<?= $id ?>" src="<?= $src ?>" alt="<?= $title ?>" width="<?= $width ?>" height="<?= $height ?>"/>
<?php
}