Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
e5d117c8
Commit
e5d117c8
authored
Dec 29, 2017
by
Davis King
Browse files
Made video tag work in more browsers
parent
aafbfefa
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
docs/docs/optimization.xml
docs/docs/optimization.xml
+1
-1
docs/docs/stylesheet.xsl
docs/docs/stylesheet.xsl
+3
-2
No files found.
docs/docs/optimization.xml
View file @
e5d117c8
...
...
@@ -1193,7 +1193,7 @@ Or it can use the elastic net regularizer:
video concludes.
</p>
<center>
<video
src=
"find_max_global_example
.webm
"
>
<video
src=
"find_max_global_example"
>
Video of optimizer running
</video>
</center>
...
...
docs/docs/stylesheet.xsl
View file @
e5d117c8
...
...
@@ -787,8 +787,9 @@
</img>
</xsl:template>
<xsl:template
match=
"video"
>
<video
controls=
""
>
<source
src=
"{@src}"
type=
"video/webm"
/>
<video
controls=
"true"
poster=
"{@src}.png"
>
<source
src=
"{@src}.webm"
type=
"video/webm"
/>
<source
src=
"{@src}.mp4"
type=
"video/mp4"
/>
<xsl:apply-templates/>
</video>
</xsl:template>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment