This commit is contained in:
Sam Potts 2019-01-27 01:15:54 +11:00
parent 32e8cce527
commit 6bf6c3f0f4
6 changed files with 7 additions and 5 deletions

2
demo/dist/demo.js vendored
View File

@ -12676,7 +12676,7 @@ typeof navigator === "object" && (function () {
var player = new Plyr(selector, {
debug: true,
title: 'View From A Blue Moon',
iconUrl: '../dist/plyr.svg',
iconUrl: 'dist/plyr.svg',
keyboard: {
global: true
},

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

1
demo/dist/plyr.svg vendored Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.4 KiB

View File

@ -62,7 +62,7 @@ import Plyr from '../../../src/js/plyr';
const player = new Plyr(selector, {
debug: true,
title: 'View From A Blue Moon',
iconUrl: '../dist/plyr.svg',
iconUrl: 'dist/plyr.svg',
keyboard: {
global: true,
},

View File

@ -189,7 +189,8 @@ const build = {
.pipe(svgstore())
.pipe(rename({ basename: bundle }))
.pipe(size(sizeOptions))
.pipe(gulp.dest(paths[bundle].output)),
.pipe(gulp.dest(paths[bundle].output))
.pipe(gulp.dest(paths.demo.output)),
);
},
};