Skip to content

Commit

Permalink
refactor: fix typos (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-lai authored Dec 7, 2022
1 parent 424f14f commit ec1bbf5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion adminSDK/reseller/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
}

const subscriptions = response.result.subscriptions;
if (!subscriptions || usubscriptionssers.length == 0) {
if (!subscriptions || subscriptions.length == 0) {
document.getElementById('content').innerText = 'No subscriptions found.';
return;
}
Expand Down
4 changes: 2 additions & 2 deletions drive/picker/helloworld.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@
* Callback after api.js is loaded.
*/
function gapiLoaded() {
gapi.load('client:picker', intializePicker);
gapi.load('client:picker', initializePicker);
}

/**
* Callback after the API client is loaded. Loads the
* discovery doc to initialize the API.
*/
async function intializePicker() {
async function initializePicker() {
await gapi.client.load('https://www.googleapis.com/discovery/v1/apis/drive/v3/rest');
pickerInited = true;
maybeEnableButtons();
Expand Down

0 comments on commit ec1bbf5

Please sign in to comment.