Skip to content

Commit

Permalink
Fixed #139: removed namespaces references (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
rgaudin authored Sep 29, 2022
1 parent 89a06bb commit c694fbb
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 57 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- Fixed crash on videos without speakers (#134)
- Adapted for no-namespace ZIM (#139)

## [2.0.11] - 2022-08-01

Expand Down
1 change: 0 additions & 1 deletion ted2zim/templates/article.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
<link href="assets/videojs/video-js.min.css" rel="stylesheet" type="text/css">
<link href="assets/article.css" rel="stylesheet" type="text/css">
<link id="favicon" rel="shortcut icon" href="favicon.png" type="image/png">
<script src="assets/zim_prefix.js"></script>
<script src="assets/videojs/video.min.js"></script>
<script src="assets/ogvjs/ogv-support.js"></script>
<script src="assets/ogvjs/ogv.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion ted2zim/templates/assets/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ function refreshVideos(language, pageData) {
a.className = 'nostyle'

var img = document.createElement('img');
img.src = ZIM_IMG_NS+'videos/'+video['id']+'/thumbnail.webp';
img.src = 'videos/'+video['id']+'/thumbnail.webp';

var author = document.createElement('p');
author.id = 'author';
Expand Down
54 changes: 0 additions & 54 deletions ted2zim/templates/assets/zim_prefix.js

This file was deleted.

1 change: 0 additions & 1 deletion ted2zim/templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{page_title}}</title>
<link id="favicon" rel="shortcut icon" href="favicon.png" type="image/png">
<script src="assets/zim_prefix.js"></script>
<link href="assets/home.css" rel="stylesheet" type="text/css">
<link href="assets/chosen/chosen.min.css" rel="stylesheet" type="text/css">
<script src="assets/polyfills.js"></script>
Expand Down

0 comments on commit c694fbb

Please sign in to comment.