Skip to content

Commit

Permalink
webcam fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
RudiThoeni committed Sep 13, 2023
1 parent 769fdee commit 69eb9e4
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
<tr ng-repeat="webcam in webcams | filter:query">
<td>
<div style="max-width:150px;min-height:75px">
<img class="img-thumbnail img-responsive" ng-src="{{ webcam.Webcamurl || '../img/noimage.png' }}" title="{{ webcam.Shortname }}" ng-click="showInfoModal(webcam)" />
<img class="img-thumbnail img-responsive" ng-src="{{ webcam.ImageGallery[0].ImageUrl || '../img/noimage.png' }}" title="{{ webcam.Shortname }}" ng-click="showInfoModal(webcam)" />
</div>
</td>
<td>{{ webcam.Webcamname[lang] }}</td>
Expand Down Expand Up @@ -988,7 +988,7 @@
<div class="row">
<div class="col-sm-6">
<div>
<img data-ng-src="{{webcam.Webcamurl}}" style="margin:auto;max-width:420px" class="img-rounded">
<img data-ng-src="{{ webcam.ImageGallery[0].ImageUrl }}" style="margin:auto;max-width:420px" class="img-rounded">
</div>
</div>
<div class="col-sm-6">
Expand All @@ -1004,7 +1004,7 @@
<h2>{{ webcam.Webcamname[lang] }}</h2>

<p ng-show="webcam.Source != ''">
<strong>Zusatztext</strong><br />
<strong>Source</strong><br />
{{ webcam.Source }}
</p>

Expand Down

0 comments on commit 69eb9e4

Please sign in to comment.