-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Changed video source order to be: webm, ogg, mp4. * Removed Offline checks in video slide. * Fixed removal of event listeners for video slide. * Fixed empty sources checks and removed possibility of infinite loop crash. * Fixed manual calender filter order.
- Loading branch information
Showing
6 changed files
with
70 additions
and
63 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
6 changes: 3 additions & 3 deletions
6
Resources/public/templates/default_templates/slides/only-video/only-video-edit.html
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,10 +1,10 @@ | ||
<div class="only-video" data-ng-style="{'width': theStyle.width, 'height': theStyle.height}"> | ||
<div data-ng-if="ikSlide.media.length > 0 && ikSlide.media[0].provider_status === 3">Videoen er endnu ikke klar.</div> | ||
<video data-ng-if="ikSlide.media.length > 0 && ikSlide.media[0].provider_status === 1" class="only-video--video-player" controls id="videoPlayer"> | ||
<source data-ng-src="{{ikSlide.currentVideo.mp4}}" type="video/mp4"> | ||
<source data-ng-src="{{ikSlide.currentVideo.ogg}}" type="video/ogg"> | ||
<source data-ng-src="{{ikSlide.currentVideo.webm}}" type="video/webm"> | ||
<source data-ng-src="{{ikSlide.currentVideo.ogg}}" type="video/ogg"> | ||
<source data-ng-src="{{ikSlide.currentVideo.mp4}}" type="video/mp4"> | ||
</video> | ||
|
||
<img class="only-video--logo" data-ng-show="ikSlide.currentLogo" data-ng-style="{'top':ikSlide.options.logopos.top, 'bottom':ikSlide.options.logopos.bottom, 'left':ikSlide.options.logopos.left, 'right':ikSlide.options.logopos.right, 'width': ikSlide.options.logosize}" data-ng-src="{{ikSlide.currentLogo}}" /> | ||
</div> | ||
</div> |
4 changes: 2 additions & 2 deletions
4
Resources/public/templates/default_templates/slides/only-video/only-video.html
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