diff options
author | Joar Wandborg <git@wandborg.com> | 2012-04-09 21:34:29 +0200 |
---|---|---|
committer | Joar Wandborg <git@wandborg.com> | 2012-04-09 21:34:29 +0200 |
commit | 0db3e10afb38ffd7e1f01560b6a1ee375c9efeb0 (patch) | |
tree | 583d9d63606b468117b296b9fd1bec677b3ef0f5 | |
parent | 577ae8a8e1d7d1f9463bd052522f429be65148cc (diff) | |
download | mediagoblin-0db3e10afb38ffd7e1f01560b6a1ee375c9efeb0.tar.lz mediagoblin-0db3e10afb38ffd7e1f01560b6a1ee375c9efeb0.tar.xz mediagoblin-0db3e10afb38ffd7e1f01560b6a1ee375c9efeb0.zip |
Fixed video skin
Removed the default video.js skin entirely, now running on vjs-mg-skin
only!
-rw-r--r-- | mediagoblin/templates/mediagoblin/media_displays/video.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mediagoblin/templates/mediagoblin/media_displays/video.html b/mediagoblin/templates/mediagoblin/media_displays/video.html index 5e45e5ab..86c277aa 100644 --- a/mediagoblin/templates/mediagoblin/media_displays/video.html +++ b/mediagoblin/templates/mediagoblin/media_displays/video.html @@ -22,13 +22,12 @@ {{ super() }} <script type="text/javascript" src="{{ request.staticdirect('/js/extlib/video-js/video.js') }}"></script> - <link href="{{ request.staticdirect('/js/extlib/video-js/video-js.css') }}" rel="stylesheet"> <link href="{{ request.staticdirect('/css/vjs-mg-skin.css') }}" rel="stylesheet"> {% endblock %} {% block mediagoblin_media %} <div class="video-player" style="position: relative;"> - <video class="video-js vjs-default-skin vjs-mg-skin" + <video class="video-js vjs-mg-skin" width="{{ media.media_data.width }}" height="{{ media.media_data.height }}" controls="controls" |