diff options
| author | Siddique Hameed | 2013-05-22 09:36:08 -0500 | 
|---|---|---|
| committer | Pete Bacon Darwin | 2013-06-04 21:08:29 +0100 | 
| commit | ef5c874415109a85263ab0f89ba0f56dede8d41c (patch) | |
| tree | b7af8a9403c3c51afa3b4ab18b7eb7533ec885f6 /docs/src/templates/index.html | |
| parent | 8eb8c4a32fa6f61a84ee476ac0755d9263f84050 (diff) | |
| download | angular.js-ef5c874415109a85263ab0f89ba0f56dede8d41c.tar.bz2 | |
docs(index): make menu links relative
Before the Develop drop down menu items were hard coded with an absolute url,
which meant that they did not work correctly on local or ci server builds.
Diffstat (limited to 'docs/src/templates/index.html')
| -rw-r--r-- | docs/src/templates/index.html | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/docs/src/templates/index.html b/docs/src/templates/index.html index a3edba30..da75cff6 100644 --- a/docs/src/templates/index.html +++ b/docs/src/templates/index.html @@ -142,9 +142,9 @@                  <i class="icon-book icon-white"></i> Develop <b class="caret"></b>                </a>                <ul class="dropdown-menu"> -                <li><a href="http://docs.angularjs.org/tutorial">Tutorial</a></li> -                <li><a href="http://docs.angularjs.org/guide/">Developer Guide</a></li> -                <li><a href="http://docs.angularjs.org/api/">API Reference</a></li> +                <li><a href="./tutorial/">Tutorial</a></li> +                <li><a href="./guide/">Developer Guide</a></li> +                <li><a href="./api/">API Reference</a></li>                  <li><a href="http://docs.angularjs.org/misc/contribute">Contribute</a></li>                  <li><a href="http://code.angularjs.org/">Download</a></li>                </ul> | 
