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
d0f0fd06
authored
2015-06-29 14:49:16 +0200
by
Tadej Novak
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Properly parse CR+LF on Windows when generating manifests file
1 parent
12790e51
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
Gruntfile.js
Gruntfile.js
View file @
d0f0fd0
...
...
@@ -299,7 +299,7 @@ module.exports = function(grunt) {
// translate this manifest
jsManifests
+=
' \''
+
basename
(
filename
,
'.m3u8'
)
+
'\': '
+
grunt
.
file
.
read
(
abspath
)
.
split
(
'\n'
)
.
split
(
/
\r\n
|
\n
/
)
// quote and concatenate
.
map
(
function
(
line
)
{
...
...
Please
register
or
sign in
to post a comment