]> git.wh0rd.org - tt-rss.git/blobdiff - plugins/af_zz_noautoplay/init.js
add af_zz_noautoplay plugin
[tt-rss.git] / plugins / af_zz_noautoplay / init.js
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