File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,10 @@ $('.headerlink').parent().each(function() {
15
15
16
16
$ ( '.side-nav' ) . children ( 'ul:nth-child(2)' ) . children ( ) . each ( function ( ) {
17
17
var itemName = $ ( this ) . text ( ) ;
18
- if ( itemName !== 'Datastore' && itemName !== 'Storage' &&
19
- itemName !== 'Pub/Sub' ) {
18
+ if ( itemName !== 'Datastore' &&
19
+ itemName !== 'Storage' &&
20
+ itemName !== 'Pub/Sub' &&
21
+ itemName !== 'Big Query' ) {
20
22
$ ( this ) . css ( 'padding-left' , '2em' ) ;
21
23
}
22
24
} ) ;
@@ -27,6 +29,10 @@ if ($('#cloud-datastore-in-10-seconds').length)
27
29
apiQsSection = $ ( '#cloud-datastore-in-10-seconds' ) ;
28
30
else if ( $ ( '#cloud-storage-in-10-seconds' ) . length )
29
31
apiQsSection = $ ( '#cloud-storage-in-10-seconds' ) ;
32
+ else if ( $ ( '#cloud-pubsub-in-10-seconds' ) . length )
33
+ apiQsSection = $ ( '#cloud-pubsub-in-10-seconds' ) ;
34
+ else if ( $ ( '#cloud-bigquery-in-10-seconds' ) . length )
35
+ apiQsSection = $ ( '#cloud-bigquery-in-10-seconds' ) ;
30
36
31
37
if ( apiQsSection ) {
32
38
var apiQsSubSections = apiQsSection . children ( 'div' ) ;
Original file line number Diff line number Diff line change
1
+ .. toctree ::
2
+ :maxdepth: 0
3
+ :hidden:
4
+
5
+ =========
6
+ Big Query
7
+ =========
8
+
1
9
Using the API
2
10
=============
3
11
You can’t perform that action at this time.
0 commit comments