From d68279f9750dea4240c1869947f8bc441e80acaa Mon Sep 17 00:00:00 2001 From: En-Tin Wei Date: Wed, 20 Jul 2022 23:51:06 +0800 Subject: [PATCH] fix: typo `initializeGapiClient` (#122) --- drive/quickstart/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drive/quickstart/index.html b/drive/quickstart/index.html index de8eac8..983fe18 100644 --- a/drive/quickstart/index.html +++ b/drive/quickstart/index.html @@ -57,14 +57,14 @@ * Callback after api.js is loaded. */ function gapiLoaded() { - gapi.load('client', intializeGapiClient); + gapi.load('client', initializeGapiClient); } /** * Callback after the API client is loaded. Loads the * discovery doc to initialize the API. */ - async function intializeGapiClient() { + async function initializeGapiClient() { await gapi.client.init({ apiKey: API_KEY, discoveryDocs: [DISCOVERY_DOC],