diff --git a/asset-manifest.json b/asset-manifest.json index 98bba1e..29568a7 100644 --- a/asset-manifest.json +++ b/asset-manifest.json @@ -1,9 +1,9 @@ { "files": { "main.css": "/portfolio-react/static/css/main.bf538fe7.css", - "main.js": "/portfolio-react/static/js/main.afca4fec.js", + "main.js": "/portfolio-react/static/js/main.a5a75540.js", "static/js/119.e408348c.chunk.js": "/portfolio-react/static/js/119.e408348c.chunk.js", - "static/js/449.0b389daa.chunk.js": "/portfolio-react/static/js/449.0b389daa.chunk.js", + "static/js/449.25db0ace.chunk.js": "/portfolio-react/static/js/449.25db0ace.chunk.js", "static/js/699.9a2a4f48.chunk.js": "/portfolio-react/static/js/699.9a2a4f48.chunk.js", "static/js/850.02d73659.chunk.js": "/portfolio-react/static/js/850.02d73659.chunk.js", "static/js/569.ed8211e9.chunk.js": "/portfolio-react/static/js/569.ed8211e9.chunk.js", @@ -20,9 +20,9 @@ "static/js/165.3cc6d62a.chunk.js": "/portfolio-react/static/js/165.3cc6d62a.chunk.js", "index.html": "/portfolio-react/index.html", "main.bf538fe7.css.map": "/portfolio-react/static/css/main.bf538fe7.css.map", - "main.afca4fec.js.map": "/portfolio-react/static/js/main.afca4fec.js.map", + "main.a5a75540.js.map": "/portfolio-react/static/js/main.a5a75540.js.map", "119.e408348c.chunk.js.map": "/portfolio-react/static/js/119.e408348c.chunk.js.map", - "449.0b389daa.chunk.js.map": "/portfolio-react/static/js/449.0b389daa.chunk.js.map", + "449.25db0ace.chunk.js.map": "/portfolio-react/static/js/449.25db0ace.chunk.js.map", "699.9a2a4f48.chunk.js.map": "/portfolio-react/static/js/699.9a2a4f48.chunk.js.map", "850.02d73659.chunk.js.map": "/portfolio-react/static/js/850.02d73659.chunk.js.map", "569.ed8211e9.chunk.js.map": "/portfolio-react/static/js/569.ed8211e9.chunk.js.map", @@ -40,6 +40,6 @@ }, "entrypoints": [ "static/css/main.bf538fe7.css", - "static/js/main.afca4fec.js" + "static/js/main.a5a75540.js" ] } \ No newline at end of file diff --git a/index.html b/index.html index 47bbd31..ed103ca 100644 --- a/index.html +++ b/index.html @@ -1 +1 @@ -
Visible for testing.\n */\nfunction setAbortableTimeout(\n signal: AnalyticsAbortSignal,\n throttleEndTimeMillis: number\n): Promise AbortController's AbortSignal conveniently decouples fetch timeout logic from other aspects\n * of networking, such as retries. Firebase doesn't use AbortController enough to justify a\n * polyfill recommendation, like we do with the Fetch API, but this minimal shim can easily be\n * swapped out if/when we do.\n */\nexport class AnalyticsAbortSignal {\n listeners: Array<() => void> = [];\n addEventListener(listener: () => void): void {\n this.listeners.push(listener);\n }\n abort(): void {\n this.listeners.forEach(listener => listener());\n }\n}\n","/**\n * @license\n * Copyright 2019 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n AnalyticsCallOptions,\n CustomParams,\n ControlParams,\n EventParams,\n ConsentSettings\n} from './public-types';\nimport { Gtag } from './types';\nimport { GtagCommand } from './constants';\nimport { AnalyticsError, ERROR_FACTORY } from './errors';\n\n/**\n * Event parameters to set on 'gtag' during initialization.\n */\nexport let defaultEventParametersForInit: CustomParams | undefined;\n\n/**\n * Logs an analytics event through the Firebase SDK.\n *\n * @param gtagFunction Wrapped gtag function that waits for fid to be set before sending an event\n * @param eventName Google Analytics event name, choose from standard list or use a custom string.\n * @param eventParams Analytics event parameters.\n */\nexport async function logEvent(\n gtagFunction: Gtag,\n initializationPromise: Promise