File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 147
147
}
148
148
149
149
const subscriptions = response . result . subscriptions ;
150
- if ( ! subscriptions || usubscriptionssers . length == 0 ) {
150
+ if ( ! subscriptions || subscriptions . length == 0 ) {
151
151
document . getElementById ( 'content' ) . innerText = 'No subscriptions found.' ;
152
152
return ;
153
153
}
Original file line number Diff line number Diff line change 59
59
* Callback after api.js is loaded.
60
60
*/
61
61
function gapiLoaded ( ) {
62
- gapi . load ( 'client:picker' , intializePicker ) ;
62
+ gapi . load ( 'client:picker' , initializePicker ) ;
63
63
}
64
64
65
65
/**
66
66
* Callback after the API client is loaded. Loads the
67
67
* discovery doc to initialize the API.
68
68
*/
69
- async function intializePicker ( ) {
69
+ async function initializePicker ( ) {
70
70
await gapi . client . load ( 'https://www.googleapis.com/discovery/v1/apis/drive/v3/rest' ) ;
71
71
pickerInited = true ;
72
72
maybeEnableButtons ( ) ;
You can’t perform that action at this time.
0 commit comments