We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11aceac commit 4f90c9bCopy full SHA for 4f90c9b
docs/app/assets/Error404.html
@@ -2,12 +2,10 @@ <h1>Welcome To AngularJS</h1>
2
3
<p>The page you were looking for is not here. Perhaps you were looking for something else...</p>
4
5
-<div class="search-results-frame" ng-controller="Error404SearchCtrl">
+<div ng-controller="Error404SearchCtrl">
6
7
- <div ng-repeat="(key, value) in results" ng-show="value.length">
8
- <h4>{{ key }}</h4>
9
- <ul class="search-results">
10
- <li ng-repeat="item in value"><a ng-href="{{ item.path }}">{{ item.name }}</a></li>
11
- </ul>
12
- </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>
13
</div>
0 commit comments