Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
Annotation-System
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
14
Issues
14
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Annotation-Pushers
Annotation-System
Commits
d420513e
Commit
d420513e
authored
May 02, 2018
by
Matt Mascarenhas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cinera_player_pre.js: Allow DOCTYPE html
parent
e77d2086
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
7 deletions
+2
-7
README.md
README.md
+0
-5
cinera/cinera.c
cinera/cinera.c
+1
-1
cinera/cinera_player_pre.js
cinera/cinera_player_pre.js
+1
-1
No files found.
README.md
View file @
d420513e
...
...
@@ -109,11 +109,6 @@ directory. Typical operation will involve setting these flags:
Feel free to play with templates to your heart's content. If you do anything
invalid, _Cinera_ will tell you what's wrong.
Note: There is currently an issue sizing the annotation marker container if your
HTML document contains
`<!DOCTYPE html>`
. To work around this for now, please do
not declare a DOCTYPE and instead let the page be displayed in [quirks
mode](https://www.w3.org/International/articles/serving-xhtml/#quirks).
#### Arguments
Usage: ./cinera [option(s)] filename(s)
...
...
cinera/cinera.c
View file @
d420513e
...
...
@@ -16,7 +16,7 @@ typedef struct
version
CINERA_APP_VERSION
=
{
.
Major
=
0
,
.
Minor
=
5
,
.
Patch
=
4
7
.
Patch
=
4
8
};
// TODO(matt): Copy in the DB 3 stuff from cinera_working.c
...
...
cinera/cinera_player_pre.js
View file @
d420513e
...
...
@@ -115,7 +115,7 @@ Player.prototype.jumpToPrevMarker = function() {
Player
.
prototype
.
updateSize
=
function
()
{
var
width
=
this
.
videoContainer
.
offsetWidth
;
var
height
=
width
/
16
*
9
;
this
.
markersContainer
.
style
.
height
=
height
;
this
.
markersContainer
.
style
.
height
=
height
+
"
px
"
;
if
(
this
.
youtubePlayerReady
)
{
this
.
youtubePlayer
.
setSize
(
Math
.
floor
(
width
),
Math
.
floor
(
height
));
}
...
...
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