44 lines
1 KiB
HTML
44 lines
1 KiB
HTML
<!DOCTYPE HTML>
|
|
<html xmlns:ng="http://angularjs.org">
|
|
<head>
|
|
<title>AngularJS Docs E2E Test Runner</title>
|
|
<script>
|
|
var production = location.hostname === 'docs.angularjs.org',
|
|
headEl = document.head,
|
|
angularVersion = {
|
|
current: '1.1.2', // rewrite during build
|
|
stable: '1.0.3'
|
|
};
|
|
|
|
addTag('script', {src: path('angular-scenario.js')}, function() {
|
|
addTag('script', {src: 'docs-scenario.js'}, function() {
|
|
angular.scenario.setUpAndRun();
|
|
});
|
|
});
|
|
|
|
function addTag(name, attributes, callback) {
|
|
var el = document.createElement(name),
|
|
attrName;
|
|
|
|
for (attrName in attributes) {
|
|
el.setAttribute(attrName, attributes[attrName]);
|
|
}
|
|
|
|
if (callback) {
|
|
el.onload = callback;
|
|
}
|
|
|
|
headEl.appendChild(el);
|
|
}
|
|
|
|
|
|
function path(name) {
|
|
return production
|
|
? 'http://code.angularjs.org/' + angularVersion.stable + '/' + name
|
|
: '../' + name;
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|