Showing 6 changed files with 7 additions and 0 deletions
+1
.gitignore
... ...
@@ -1,5 +1,6 @@
1 1
 sources/*html
2 2
 sources/*pdf
3
+sources/*epub
3 4
 sources/news.json
4 5
 sources/gennews.log
5 6
 .*swp
+1
css/style-day.css
... ...
@@ -15,6 +15,7 @@ html {
15 15
   background-color: #0099cc;
16 16
 }
17 17
 #html-btn,
18
+#epub-btn,
18 19
 #pdf-btn {
19 20
   border: 2px;
20 21
   color: white;
+1
css/style-night.css
... ...
@@ -15,6 +15,7 @@ html {
15 15
   background-color: #666;
16 16
 }
17 17
 #html-btn,
18
+#epub-btn,
18 19
 #pdf-btn {
19 20
   border: 2px;
20 21
   color: #333;
+1
css/style.css
... ...
@@ -79,6 +79,7 @@ iframe {
79 79
 
80 80
 
81 81
 #html-btn,
82
+#epub-btn,
82 83
 #pdf-btn,
83 84
 #style-btn,
84 85
 #menu-btn {
BIN
img/epub.png
+3
index.php
... ...
@@ -230,6 +230,9 @@ function NewsSection($sourceHTML) {
230 230
     function printPDFAll(channel) {
231 231
       var win = window.open("sources/all-"+channel, '_blank');
232 232
     }
233
+    function printEPUBAll(channel) {
234
+      var win = window.open("sources/all-"+channel, '_blank');
235
+    }
233 236
     function printPDF() {
234 237
       var filename = 'test.pdf'
235 238
       var margin = { top: 0, left: 10, right: 0, bottom: 0 };