-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add public folder to gitignore Signed-off-by: Matt Stratton <[email protected]> * Remove markdownify from guest list Fixes #240 Signed-off-by: Matt Stratton <[email protected]> * Replace media player Fixes #241 Signed-off-by: Matt Stratton <[email protected]>
- Loading branch information
1 parent
2c3e4e2
commit 46f2bb5
Showing
18 changed files
with
98 additions
and
4,410 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ release/ | |
dist | ||
.DS_Store | ||
.Ulysses-Group.plist | ||
public/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
var gulp = require('gulp'); | ||
|
||
gulp.task('copy-player-files', function() { | ||
return gulp.src(['node_modules/mediaelement/build/mejs-controls.png','node_modules/mediaelement/build/mejs-controls.svg']) | ||
.pipe(gulp.dest('static/img')); | ||
}); | ||
|
||
gulp.task('copy-css-files', function() { | ||
return gulp.src(['node_modules/mediaelement/build/mediaelementplayer.min.css','node_modules/mediaelement-plugins/dist/speed/speed.min.css']) | ||
.pipe(gulp.dest('static/css')); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
<script src={{ "js/castanet-min.js" | absURL }}></script> | ||
<script src="/audiojs/audio.min.js"></script> | ||
<script> | ||
$("#share").jsSocials({ | ||
shares: [ | ||
|
@@ -28,13 +27,15 @@ | |
], | ||
}); | ||
</script> | ||
|
||
<script> | ||
audiojs.events.ready(function() { | ||
var as = audiojs.createAll({ | ||
imageLocation: '{{"img/player-graphics.gif" | relURL}}', | ||
retinaImageLocation: '{{"img/[email protected]" | relURL}}', | ||
swfLocation: '{{"swf/audiojs.swf" | relURL}}' | ||
}); | ||
}); | ||
var player = new MediaElementPlayer('player2', { | ||
features: ['playpause', 'current', 'progress', 'duration', 'volume','speed'], | ||
defaultSpeed: 1.0, | ||
// other configuration elements | ||
}); | ||
</script> | ||
|
||
|
||
|
||
{{ template "_internal/google_analytics_async.html" . }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.