diff options
| author | Peter Bacon Darwin | 2014-03-08 06:34:39 +0000 | 
|---|---|---|
| committer | Igor Minar | 2014-03-11 10:39:59 -0700 | 
| commit | 63831f118f1a0727882f0ec645e8c15be2c32942 (patch) | |
| tree | a020cb9e4ff2786d0392c49476fd1ac72f7b6cdb | |
| parent | ebe280eedea416c84c2300c9b952bb42d73cdb53 (diff) | |
| download | angular.js-63831f118f1a0727882f0ec645e8c15be2c32942.tar.bz2 | |
docs(Error404): improve search results layout
| -rw-r--r-- | docs/app/assets/Error404.html | 12 | 
1 files changed, 5 insertions, 7 deletions
| diff --git a/docs/app/assets/Error404.html b/docs/app/assets/Error404.html index d9ba1d72..07733d06 100644 --- a/docs/app/assets/Error404.html +++ b/docs/app/assets/Error404.html @@ -2,12 +2,10 @@  <p>The page you were looking for is not here. Perhaps you were looking for something else...</p> -<div class="search-results-frame" ng-controller="Error404SearchCtrl"> +<div ng-controller="Error404SearchCtrl"> -  <div ng-repeat="(key, value) in results" ng-show="value.length"> -    <h4>{{ key }}</h4> -    <ul class="search-results"> -      <li ng-repeat="item in value"><a ng-href="{{ item.path }}">{{ item.name }}</a></li> -    </ul> -  </div> +  <dl ng-repeat="(key, value) in results" ng-show="value.length" style="float: left; margin-right:20px"> +    <dt>{{ key }}</dt> +    <dd ng-repeat="item in value"><a ng-href="{{ item.path }}">{{ item.name }}</a></dd> +  </dl>  </div> | 
