Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
videojs-contrib-hls
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
c815165f
authored
2013-12-11 19:23:28 -0500
by
Gary Katsevman
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fix fractions
1 parent
67bdb0e1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
src/m3u8/m3u8.pegjs
src/m3u8/m3u8.pegjs
View file @
c815165
...
...
@@ -244,7 +244,7 @@ hexint
/ "0X" hexDigits:hexDigit+ { return '0x' + hexDigits.join(''); }
frac
= dec:"." digits:digits { return
parseFloat(dec + digits.join('')
); }
= dec:"." digits:digits { return
dec + digits.join(''
); }
digits
= digit+
...
...
Please
register
or
sign in
to post a comment