aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'docs/src/templates/index.html')
-rw-r--r--docs/src/templates/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/src/templates/index.html b/docs/src/templates/index.html
index 5252605e..6054f813 100644
--- a/docs/src/templates/index.html
+++ b/docs/src/templates/index.html
@@ -27,7 +27,7 @@
sync = true,
angularVersion = {
current: '"NG_VERSION_FULL"', // rewrite during build
- stable: '"NG_VERSION_STABLE"'
+ cdn: '"NG_VERSION_CDN"'
};
addTag('base', {href: baseUrl});
@@ -51,12 +51,12 @@
if (production) {
if (name.match(/^angular(-\w+)?\.js/) && !name.match(/bootstrap/)) {
name = '//ajax.googleapis.com/ajax/libs/angularjs/' +
- angularVersion.stable +
+ angularVersion.cdn +
'/' +
name.replace(/\.js$/, '.min.js');
} else {
name = 'http://code.angularjs.org/' +
- angularVersion.stable +
+ angularVersion.cdn +
'/' +
name.replace(/\.js$/, '.min.js');
}