Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit a31c207

Browse files
gkalpakpetebacondarwin
authored andcommitted
chore(docs-app): remove document.write() from docs index.html
Previously, the docs app used `document.write()`, causing the following warning on Chrome: ``` A parser-blocking, cross site (i.e. different eTLD+1) script, https://ajax.googleapis.com/ajax/libs/angularjs/1.7.9/angular.min.js, is invoked via document.write. The network request for this script MAY be blocked by the browser in this or a future page load due to poor network connectivity. ``` In the past, `document.write()` seems to have been used in order for browsers (such as Firefox) to work correctly with our dynamically set `<base>` tag and relative style/script URLs. This commit replaces `document.write()` with regular `<style>`/`<script>` tabs to avoid the warning (and potential issues due to poor network connectivity). It seems that the latest versions of Chrome, Firefox and IE can handle this fine (without naticeable delays). Fixes #15396
1 parent 2518966 commit a31c207

File tree

1 file changed

+24
-38
lines changed

1 file changed

+24
-38
lines changed

docs/config/templates/app/indexPage.template.html

+24-38
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
{# Macros #}
2+
{%- macro addTag(name, attributes) %}
3+
<{$ name $}
4+
{%- for attrName, attrValue in attributes -%}
5+
{$ ' ' + attrName $}="{$ attrValue $}"
6+
{%- endfor -%}
7+
></{$ name $}>
8+
{%- endmacro -%}
9+
110
<!doctype html>
211
<html lang="en" ng-app="docsApp" ng-strict-di ng-controller="DocsController">
312
<head>
@@ -24,50 +33,27 @@
2433
})();
2534
</script>
2635
<script type="text/javascript">
27-
// dynamically add base tag as well as css and javascript files.
28-
// we can't add css/js the usual way, because some browsers (FF) eagerly prefetch resources
29-
// before the base attribute is added, causing 404 and terribly slow loading of the docs app.
36+
// Dynamically add `<base>` tag.
3037
(function() {
31-
var indexFile = (location.pathname.match(/\/(index[^\.]*\.html)/) || ['', ''])[1],
32-
rUrl = /(#!\/|api|guide|misc|tutorial|error|index[^\.]*\.html).*$/,
38+
var indexFile = (location.pathname.match(/\/(index[^.]*\.html)/) || ['', ''])[1],
39+
rUrl = /(#!\/|api|guide|misc|tutorial|error|index[^.]*\.html).*$/,
3340
baseUrl = location.href.replace(rUrl, indexFile),
34-
production = location.hostname === 'docs.angularjs.org',
3541
headEl = document.getElementsByTagName('head')[0],
36-
sync = true;
37-
38-
addTag('base', {href: baseUrl});
39-
40-
41-
{% for stylesheet in doc.stylesheets %}addTag('link', {rel: 'stylesheet', href: '{$ stylesheet $}', type: 'text/css'});
42-
{% endfor %}
43-
44-
{% for script in doc.scripts %}addTag('script', {src: '{$ script $}' }, sync);
45-
{% endfor %}
46-
47-
function addTag(name, attributes, sync) {
48-
var el = document.createElement(name),
49-
attrName;
42+
baseEl = document.createElement('base');
5043

51-
for (attrName in attributes) {
52-
el.setAttribute(attrName, attributes[attrName]);
53-
}
54-
55-
sync ? document.write(outerHTML(el)) : headEl.appendChild(el);
56-
}
57-
58-
function outerHTML(node){
59-
// if IE, Chrome take the internal method otherwise build one
60-
return node.outerHTML || (
61-
function(n){
62-
var div = document.createElement('div'), h;
63-
div.appendChild(n);
64-
h = div.innerHTML;
65-
div = null;
66-
return h;
67-
})(node);
68-
}
44+
baseEl.setAttribute('href', baseUrl);
45+
headEl.appendChild(baseEl);
6946
})();
47+
</script>
7048

49+
{% for stylesheet in doc.stylesheets %}
50+
{$- addTag('link', {rel: 'stylesheet', href: stylesheet, type: 'text/css'}) -$}
51+
{% endfor %}
52+
{% for script in doc.scripts %}
53+
{$- addTag('script', {src: script}) -$}
54+
{% endfor %}
55+
56+
<script type="text/javascript">
7157
// GA asynchronous tracker
7258
var _gaq = _gaq || [];
7359
_gaq.push(['_setAccount', 'UA-8594346-3']);

0 commit comments

Comments
 (0)