[AIRFLOW-5574] Fix Google Analytics script loading (#6218)

This commit is contained in:
Kamil Breguła 2019-10-01 10:06:05 +01:00 коммит произвёл GitHub
Родитель 67e56a6607
Коммит 844bbad22a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 8 добавлений и 1 удалений

9
docs/templates/footer.html поставляемый
Просмотреть файл

@ -31,7 +31,14 @@
ga.src = ('https:' == document.location.protocol ?
'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
ga.setAttribute('async', 'true');
document.documentElement.firstChild.appendChild(ga);
var nodes = document.documentElement.childNodes;
var i = -1;
var node;
do {
i++;
node = nodes[i]
} while(node.nodeType !== Node.ELEMENT_NODE);
node.appendChild(ga);
})();
</script>
</div>