]> git.wh0rd.org - tt-rss.git/commitdiff
add af_zz_noautoplay plugin
authorAndrew Dolgov <noreply@madoka.volgo-balt.ru>
Fri, 31 Jul 2015 10:42:22 +0000 (13:42 +0300)
committerAndrew Dolgov <noreply@madoka.volgo-balt.ru>
Fri, 31 Jul 2015 10:42:22 +0000 (13:42 +0300)
plugins/af_zz_noautoplay/init.js [new file with mode: 0644]
plugins/af_zz_noautoplay/init.php [new file with mode: 0644]

diff --git a/plugins/af_zz_noautoplay/init.js b/plugins/af_zz_noautoplay/init.js
new file mode 100644 (file)
index 0000000..9b7bf00
--- /dev/null
@@ -0,0 +1,40 @@
+dojo.addOnLoad(function() {
+       PluginHost.register(PluginHost.HOOK_ARTICLE_RENDERED_CDM, function(row) {
+               if (row) {
+                       console.log("af_zz_noautoplay!");
+                       console.log(row);
+
+                       var videos = row.getElementsByTagName("video");
+                       console.log(row.innerHTML);
+
+                       for (i = 0; i < videos.length; i++) {
+
+                               videos[i].removeAttribute("autoplay");
+                               videos[i].pause();
+                               videos[i].onclick = function() {
+                                       this.paused ? this.play() : this.pause();
+                               }
+                       }
+               }
+
+               return true;
+       });
+
+       PluginHost.register(PluginHost.HOOK_ARTICLE_RENDERED, function(row) {
+               if (row) {
+                       var videos = row.getElementsByTagName("video");
+
+                       for (i = 0; i < videos.length; i++) {
+                               videos[i].removeAttribute("autoplay");
+                               videos[i].pause();
+                               videos[i].onclick = function() {
+                                       this.paused ? this.play() : this.pause();
+                               }
+                       }
+
+               }
+
+               return true;
+       });
+
+});
\ No newline at end of file
diff --git a/plugins/af_zz_noautoplay/init.php b/plugins/af_zz_noautoplay/init.php
new file mode 100644 (file)
index 0000000..a36dafa
--- /dev/null
@@ -0,0 +1,24 @@
+<?php
+class Af_Zz_NoAutoPlay extends Plugin {
+       private $host;
+
+       function about() {
+               return array(1.0,
+                       "Don't autoplay HTML5 videos",
+                       "fox");
+       }
+
+       function init($host) {
+               $this->host = $host;
+       }
+
+       function get_js() {
+               return file_get_contents(__DIR__ . "/init.js");
+       }
+
+       function api_version() {
+               return 2;
+       }
+
+}
+?>