Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
e5d117c8
Commit
e5d117c8
authored
Dec 29, 2017
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made video tag work in more browsers
parent
aafbfefa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
optimization.xml
docs/docs/optimization.xml
+1
-1
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:
...
@@ -1193,7 +1193,7 @@ Or it can use the elastic net regularizer:
video concludes.
video concludes.
</p>
</p>
<center>
<center>
<video
src=
"find_max_global_example
.webm
"
>
<video
src=
"find_max_global_example"
>
Video of optimizer running
Video of optimizer running
</video>
</video>
</center>
</center>
...
...
docs/docs/stylesheet.xsl
View file @
e5d117c8
...
@@ -787,8 +787,9 @@
...
@@ -787,8 +787,9 @@
</img>
</img>
</xsl:template>
</xsl:template>
<xsl:template
match=
"video"
>
<xsl:template
match=
"video"
>
<video
controls=
""
>
<video
controls=
"true"
poster=
"{@src}.png"
>
<source
src=
"{@src}"
type=
"video/webm"
/>
<source
src=
"{@src}.webm"
type=
"video/webm"
/>
<source
src=
"{@src}.mp4"
type=
"video/mp4"
/>
<xsl:apply-templates/>
<xsl:apply-templates/>
</video>
</video>
</xsl:template>
</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