Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: safari/include.youtube.js

Issue 4663448277352448: Disable history API on YouTube in order to block ads in subsequent videos (Closed)
Patch Set: Addressed comments Created Feb. 24, 2014, 2:26 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: safari/include.youtube.js
===================================================================
--- a/safari/include.youtube.js
+++ b/safari/include.youtube.js
@@ -19,8 +19,6 @@
if (document.domain != "www.youtube.com")
return;
- var pushStateDisabled = false;
-
function rewriteFlashvars(flashvars)
{
var pairs = flashvars.split("&");
@@ -69,15 +67,7 @@
// player with JavaScript which video and which ads to show next,
// bypassing our flashvars rewrite code. So we disable
// history.pushState on pages with YouTube's flash player.
- if (!pushStateDisabled)
- {
- var script = document.createElement("script");
- script.type = "application/javascript";
- script.textContent = "history.pushState = undefined;";
- document.documentElement.appendChild(script);
-
- pushStateDisabled = true;
- }
+ document.location.href = "javascript:void(history.pushState = undefined);";
}
var deferred = [];
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld