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

Unified Diff: static/js/main.js

Issue 29703633: Noissue - Abstracted embedded video for use in blog (Closed) Base URL: https://hg.adblockplus.org/web.adblockplus.org
Patch Set: Moved no-js application and iframe height+width Created Feb. 20, 2018, 10:35 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
Index: static/js/main.js
===================================================================
--- a/static/js/main.js
+++ b/static/js/main.js
@@ -1,12 +1,14 @@
"use strict";
(function()
{
+ document.documentElement.className = "js";
+
function initLanguageSelection()
{
var locale = document.getElementById("navbar-locale-selected");
// skip if page does not have language selection (EG: blog)
if (!locale) return;
locale.addEventListener("click", function()

Powered by Google App Engine
This is Rietveld