Skip to content

Commit

Permalink
Remove img height
Browse files Browse the repository at this point in the history
  • Loading branch information
cavo789 committed Dec 7, 2018
1 parent f64e7c5 commit e2c9409
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions php_grep.php
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ public static function php_grep($folder, $query, $filter, $links, $regex)
</ul>
</div>
<div class="col-sm">
<img height="300px" src="https://raw.githubusercontent.com/cavo789/php_grep/master/images/demo.gif" alt="Demo">
<img src="https://raw.githubusercontent.com/cavo789/php_grep/master/images/demo.gif" alt="Demo">
</div>
</div>
</div>
Expand Down Expand Up @@ -286,7 +286,7 @@ class="form-control"value="<?php echo $filter; ?>" />
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="checkbox">
<input class="checkbox" id="regex" name="regex" <?php echo $regex ? 'checked="checked"' : ''; ?> />
<input type="checkbox" id="regex" name="regex" <?php echo $regex ? 'checked="checked"' : ''; ?> />
<label for="regex" class="control-label">Regular&nbsp;expressions</label>
</div>
</div>
Expand Down

0 comments on commit e2c9409

Please sign in to comment.