aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src/templates/index.html
diff options
context:
space:
mode:
authorMatias Niemelä2013-08-15 01:09:06 -0400
committerIgor Minar2013-08-23 07:37:51 -0700
commit74ae3edf8614ea8a97580033db0fd145d5260b62 (patch)
treecc709e3ec941f93e66b4c8f0a298d7a78f8bb7b6 /docs/src/templates/index.html
parent699f86c535cbc01589d60ea1dc48114a93cd4f19 (diff)
downloadangular.js-74ae3edf8614ea8a97580033db0fd145d5260b62.tar.bz2
chore(ngdocs): fix the version jumper
correct the ordering and make gen-docs prepare the list of versions during the build process
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 0788e415..872ca586 100644
--- a/docs/src/templates/index.html
+++ b/docs/src/templates/index.html
@@ -250,9 +250,9 @@
<div class="span3">
<div class="well">
<div ng-controller="DocsVersionsCtrl">
- <select ng-options="v.version as v.title group by v.group for v in versions"
- ng-model="version"
- ng-change="jumpToDocsVersion(version)"
+ <select ng-options="v as v.title group by v.group for v in docs_versions"
+ ng-model="docs_version"
+ ng-change="jumpToDocsVersion(docs_version)"
class="docs-version-jump">
</select>
</div>