-
-
Notifications
You must be signed in to change notification settings - Fork 272
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
048d06e
commit 1b6373e
Showing
4 changed files
with
105 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,38 @@ | ||
<div ng-controller="TimelineModalCtrl"> | ||
|
||
|
||
<!-- style="width: 90%; height: 90%; top: 5%; left: 5%; right: 5%; bottom: 5%;"--> | ||
<ion-modal-view cache-view="false"> | ||
<ion-content ng-cloak on-double-tap="closeModal()"> | ||
|
||
<div id="timeline-alarm-vis"></div> | ||
<div ng-controller="TimelineModalCtrl"> | ||
<center><h5> Showing frames for Event: {{eid}}</h5></center> | ||
|
||
<div id="timeline-alarm-vis" ></div> | ||
|
||
|
||
|
||
<ion-spinner icon="spiral" style="position:absolute; top:50%;left:50%" ng-if="!dataReady"></ion-spinner> | ||
|
||
<div style="height:190px;"> | ||
<ion-scroll direction="x" > | ||
|
||
|
||
<span ng-repeat="alarm in alarm_images"> | ||
|
||
|
||
<figure style="display:inline-block"> | ||
<figcaption><small>frame:{{alarm.fid}} score:{{alarm.score}}</small></figcaption> | ||
<img ng-src="{{playbackURL}}/index.php?view=image&path={{alarm.relativePath}}{{alarm.fname}}&height=380" style="width: auto; height: auto;max-width: 100%;max-height: 170px" on-tap="showImage(playbackURL,alarm.relativePath,alarm.fname, alarm.fid)"/> | ||
|
||
|
||
</figure> | ||
|
||
</span> | ||
|
||
</ion-scroll> | ||
</div> | ||
</div> | ||
</ion-content> | ||
|
||
</ion-modal-view> | ||
|
||
|
||
|
||
</div> | ||
|