Skip to content

Commit a78d438

Browse files
Merge pull request #714 from stephenplusplus/spp--docs-class-bug
docs: correctly use classes in markdown & fix site bug
2 parents 2ad51ae + b21744f commit a78d438

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

docs/authorization.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ With `gcloud-node` it's incredibly easy to get authorized and start using Google
44

55
If you are running this client on Google Compute Engine, we handle authorization for you with no configuration. You just need to make sure that when you [set up the GCE instance][gce-how-to], you add the correct scopes for the APIs you want to access.
66

7-
```js hljs-class
7+
```hljs-class
88
var config = {
99
projectId: 'grape-spaceship-123'
1010
};
@@ -26,7 +26,7 @@ If you are not running this client on Google Compute Engine, you need a Google D
2626
* If you want to use a new service account, click on **Create new Client ID** and select **Service account**. After the account is created, you will be prompted to download the JSON key file that the library uses to authorize your requests.
2727
* If you want to generate a new key for an existing service account, click on **Generate new JSON key** and download the JSON key file.
2828

29-
``` js hljs-class
29+
```hljs-class
3030
var config = {
3131
projectId: 'grape-spaceship-123',
3232
keyFilename: '/path/to/keyfile.json'

docs/site/components/subpage/subpage-directive.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ angular
7272
priority: 1500,
7373
restrict: 'C',
7474
transclude: true,
75+
scope: {},
7576
template: '<div hljs language="javascript" source="contents"></div>',
7677
compile: function(element) {
7778
return function($scope, element, attrs) {

0 commit comments

Comments
 (0)