aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src/templates/docs-scenario.html
diff options
context:
space:
mode:
Diffstat (limited to 'docs/src/templates/docs-scenario.html')
-rw-r--r--docs/src/templates/docs-scenario.html44
1 files changed, 0 insertions, 44 deletions
diff --git a/docs/src/templates/docs-scenario.html b/docs/src/templates/docs-scenario.html
deleted file mode 100644
index 2eca5f87..00000000
--- a/docs/src/templates/docs-scenario.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<!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: '"NG_VERSION_FULL"', // rewrite during build
- cdn: '"NG_VERSION_CDN"'
- };
-
- 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.cdn + '/' + name
- : '../' + name;
- }
- </script>
-</head>
-<body>
-</body>
-</html>