|
| 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 | + |
1 | 10 | <!doctype html>
|
2 | 11 | <html lang="en" ng-app="docsApp" ng-strict-di ng-controller="DocsController">
|
3 | 12 | <head>
|
|
24 | 33 | })();
|
25 | 34 | </script>
|
26 | 35 | <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. |
30 | 37 | (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).*$/, |
33 | 40 | baseUrl = location.href.replace(rUrl, indexFile),
|
34 |
| - production = location.hostname === 'docs.angularjs.org', |
35 | 41 | 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'); |
50 | 43 |
|
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); |
69 | 46 | })();
|
| 47 | + </script> |
70 | 48 |
|
| 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"> |
71 | 57 | // GA asynchronous tracker
|
72 | 58 | var _gaq = _gaq || [];
|
73 | 59 | _gaq.push(['_setAccount', 'UA-8594346-3']);
|
|
0 commit comments