Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docs/site/components/docs/docs-services.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,13 @@ angular.module('gcloud.docs')
return moduleA.title === 'gcloud' ? -1 : moduleA.title > moduleB.title;
});
};
})

.factory('getModule', function(pages) {
'use strict';

return function(moduleName) {
moduleName = moduleName.toLowerCase();
return pages[moduleName];
};
});
2 changes: 1 addition & 1 deletion docs/site/components/docs/docs.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script id="docs-header.html" type="text/ng-template">
<header header title="Node.js">
<header header title="{{pageTitle}}">
<div class="row row--right">
<div class="col margin-vertical">
<a href="https://github.com/GoogleCloudPlatform/gcloud-node/issues/new"
Expand Down
22 changes: 20 additions & 2 deletions docs/site/components/docs/docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ angular
});
})

.controller('DocsCtrl', function($location, $scope, $routeParams, methods, $http, versions) {
.controller('DocsCtrl', function($location, $scope, $routeParams, methods, $http, versions, getModule) {
'use strict';

$scope.isActiveUrl = function(url) {
Expand All @@ -332,7 +332,25 @@ angular
});
}

$scope.pageTitle = 'Node.js';
// Set the page title (used in the header).
var pageTitle = [];

var moduleName = $routeParams.module;
if (moduleName) {
pageTitle.push(getModule($routeParams.module).title);
}

var className = $routeParams.class;
if (className) {
pageTitle.push(className[0].toUpperCase() + className.substr(1));
}

if (pageTitle.length > 0) {
$scope.pageTitle = pageTitle.join(' » ');
} else {
$scope.pageTitle = 'Node.js';
}

$scope.showReference = true;
$scope.activeUrl = '#' + $location.path();
$scope.singleMethod = methods.singleMethod;
Expand Down