diff options
| author | Igor Minar | 2010-11-29 13:23:30 -0800 |
|---|---|---|
| committer | Igor Minar | 2010-11-29 16:47:19 -0800 |
| commit | 41c233ada1f21edcb168e94106dfd7e4b9679bbf (patch) | |
| tree | 0cf17b75289212a85806ba660ad54f6d813c036e /docs | |
| parent | 46091f811b8ec5bfe8ee53c15ef4589cf30dee01 (diff) | |
| download | angular.js-41c233ada1f21edcb168e94106dfd7e4b9679bbf.tar.bz2 | |
getting rid of #page div in docs index.html
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/docs.css | 3 | ||||
| -rw-r--r-- | docs/index.html | 24 |
2 files changed, 11 insertions, 16 deletions
diff --git a/docs/docs.css b/docs/docs.css index dfacfbe2..55002f48 100644 --- a/docs/docs.css +++ b/docs/docs.css @@ -18,9 +18,6 @@ a { height: 3.5em; } -#page { -} - #sidebar, #section { position: absolute; diff --git a/docs/index.html b/docs/index.html index 01c78fbf..cabfe6cd 100644 --- a/docs/index.html +++ b/docs/index.html @@ -29,19 +29,17 @@ <a href="index.html"><span class="angular"><angular/></span> Docs</a> </h1> </div> - <div id="page"> - <div id="sidebar"> - <input type="text" name="filterText" placeholder="search documentaiton"/> - <ul> - <li ng:repeat="page in pages.$filter(filterText)" ng:class="getClass(page)"> - <a href="{{getUrl(page)}}" ng:click="">{{page.name | short}}</a> - </li> - </ul> - </div> - <div id="section"> - <a id="feedback" ng:href="{{getFeedbackUrl()}}">Report an Issue or Ask a Question</a> - <ng:include src="getCurrentPartial()" onload="afterPartialLoaded()"></ng:include> - </div> + <div id="sidebar"> + <input type="text" name="filterText" placeholder="search documentaiton"/> + <ul> + <li ng:repeat="page in pages.$filter(filterText)" ng:class="getClass(page)"> + <a href="{{getUrl(page)}}" ng:click="">{{page.name | short}}</a> + </li> + </ul> + </div> + <div id="section"> + <a id="feedback" ng:href="{{getFeedbackUrl()}}">Report an Issue or Ask a Question</a> + <ng:include src="getCurrentPartial()" onload="afterPartialLoaded()"></ng:include> </div> </body> </html> |
