aboutsummaryrefslogtreecommitdiffstats
path: root/docs/app/src
diff options
context:
space:
mode:
Diffstat (limited to 'docs/app/src')
-rw-r--r--docs/app/src/docs.js2
-rw-r--r--docs/app/src/search.js4
2 files changed, 5 insertions, 1 deletions
diff --git a/docs/app/src/docs.js b/docs/app/src/docs.js
index 5163e982..74d78136 100644
--- a/docs/app/src/docs.js
+++ b/docs/app/src/docs.js
@@ -87,7 +87,7 @@ angular.module('DocsController', [])
breadcrumbPath += '/';
});
} else {
- $scope.currentArea = null;
+ $scope.currentArea = NG_NAVIGATION['api'];
$scope.breadcrumb = [];
}
});
diff --git a/docs/app/src/search.js b/docs/app/src/search.js
index 9ae18ff6..49d73343 100644
--- a/docs/app/src/search.js
+++ b/docs/app/src/search.js
@@ -45,6 +45,10 @@ angular.module('search', [])
};
}])
+.controller('Error404SearchCtrl', ['$scope', '$location', 'docsSearch', function($scope, $location, docsSearch) {
+ $scope.results = docsSearch($location.path().split(/[\/\.:]/).pop());
+}])
+
.factory('lunrSearch', function() {
return function(properties) {
if (window.RUNNING_IN_NG_TEST_RUNNER) return null;