diff options
| author | Igor Minar | 2011-07-29 13:44:45 -0700 | 
|---|---|---|
| committer | Igor Minar | 2011-07-29 13:44:55 -0700 | 
| commit | c1a681d6f45b7ff8af20aa9e6dcd3c20e61e1494 (patch) | |
| tree | 810cff32e93dc717305916b0d371dfdbe20fa603 | |
| parent | f4df421b44eb2ee0926b569f646c863324988c23 (diff) | |
| download | angular.js-c1a681d6f45b7ff8af20aa9e6dcd3c20e61e1494.tar.bz2 | |
doc(index.html): change the order of elements in the navbar
Users often don't see Tutorial and go straight to crappy Dev Guide,
changing the order should help find them right content in the right
order.
| -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 f3754b41..4f0b6490 100644 --- a/docs/src/templates/index.html +++ b/docs/src/templates/index.html @@ -45,11 +45,11 @@      <ul id="navbar">        <li><a href="http://angularjs.org/">AngularJS</a></li> -      <li><a href="#!/guide" ng:class="selectedSection('guide')">Developer Guide</a></li> -      <li><a href="#!/api" ng:class="selectedSection('api')">API Reference</a></li> -      <li><a href="#!/cookbook" ng:class="selectedSection('cookbook')">Examples</a></li>        <li><a href="#!/misc/started" ng:class="selectedSection('misc')">Getting Started</a></li>        <li><a href="#!/tutorial" ng:class="selectedSection('tutorial')">Tutorial</a></li> +      <li><a href="#!/api" ng:class="selectedSection('api')">API Reference</a></li> +      <li><a href="#!/cookbook" ng:class="selectedSection('cookbook')">Examples</a></li> +      <li><a href="#!/guide" ng:class="selectedSection('guide')">Developer Guide</a></li>      </ul>      <div id="sidebar"> | 
