From eb4b58addfd47abd27285278f16c728056fe0249 Mon Sep 17 00:00:00 2001 From: turtledreams Date: Wed, 6 Dec 2023 15:00:42 +0900 Subject: [PATCH] count.ly to countly --- cypress/fixtures/click_test.html | 2 +- cypress/fixtures/multi_instance.html | 8 ++++---- cypress/fixtures/referrer.html | 2 +- cypress/fixtures/scroll_test.html | 2 +- cypress/fixtures/scroll_test_2.html | 2 +- cypress/fixtures/scroll_test_3.html | 2 +- cypress/fixtures/session_test_auto.html | 2 +- cypress/fixtures/session_test_manual_1.html | 2 +- cypress/fixtures/session_test_manual_2.html | 2 +- cypress/fixtures/user_agent.html | 2 +- cypress/integration/consents.js | 2 +- cypress/integration/crashes.js | 2 +- cypress/integration/device_id.js | 2 +- cypress/integration/device_id_change.js | 2 +- cypress/integration/device_id_init_scenarios.js | 2 +- cypress/integration/events.js | 2 +- cypress/integration/health_check.js | 4 ++-- cypress/integration/integration.js | 2 +- cypress/integration/internal_limits.js | 2 +- cypress/integration/manual_widget_reporting.js | 2 +- cypress/integration/remaining_requests.js | 2 +- cypress/integration/reponse_validation.js | 2 +- cypress/integration/sessions.js | 2 +- cypress/integration/storage.js | 2 +- cypress/integration/storage_change.js | 6 +++--- cypress/integration/user_agent.js | 2 +- cypress/integration/user_details.js | 2 +- cypress/integration/utm.js | 2 +- cypress/integration/view_utm_referrer.js | 8 ++++---- cypress/integration/views.js | 2 +- cypress/integration/web_worker_requests.js | 4 ++-- cypress/support/helper.js | 4 ++-- examples/Angular/main.ts | 2 +- examples/README.md | 2 +- examples/Symbolication/src/main.js | 2 +- examples/example_apm.html | 2 +- examples/example_apm_async.html | 2 +- examples/example_async.html | 2 +- examples/example_fb.html | 2 +- examples/example_formdata.html | 2 +- examples/example_ga_adapter.html | 2 +- examples/example_gdpr.html | 2 +- examples/example_helpers.html | 2 +- examples/example_multiple_instances.html | 6 +++--- examples/example_opt_out.html | 2 +- examples/example_rating_widgets.html | 2 +- examples/example_remote_config.html | 2 +- examples/example_sync.html | 2 +- examples/examples_feedback_widgets.html | 2 +- examples/mpa/index.html | 2 +- examples/mpa/worker_for_test.js | 2 +- examples/worker.js | 2 +- 52 files changed, 65 insertions(+), 65 deletions(-) diff --git a/cypress/fixtures/click_test.html b/cypress/fixtures/click_test.html index bca3ef33..1e5e3b04 100644 --- a/cypress/fixtures/click_test.html +++ b/cypress/fixtures/click_test.html @@ -19,7 +19,7 @@ var domEl = queryExtractor(window.location.search).dom; Countly.init({ app_key: "YOUR_APP_KEY", - url: "https://your.domain.count.ly", + url: "https://your.domain.countly", debug: true, test_mode: true }) diff --git a/cypress/fixtures/multi_instance.html b/cypress/fixtures/multi_instance.html index fa9ddacb..b3deb9bd 100644 --- a/cypress/fixtures/multi_instance.html +++ b/cypress/fixtures/multi_instance.html @@ -22,7 +22,7 @@ //initializing first instance, which will be global Countly Countly.init({ app_key: "YOUR_APP_KEY1", - url: "https://your.domain.count.ly", + url: "https://your.domain.countly", test_mode: true }) Countly.remove_consent(); @@ -57,7 +57,7 @@ //initialize second instance for another app synchronously var Countly2 = Countly.init({ app_key: "YOUR_APP_KEY2", //must have different APP key - url: "https://your.domain.count.ly", + url: "https://your.domain.countly", test_mode: true }); @@ -94,7 +94,7 @@ //initialize third instance for another app asynchronously Countly.q.push(["init", { app_key: "YOUR_APP_KEY3", //must have different APP key - url: "https://your.domain.count.ly", + url: "https://your.domain.countly", test_mode: true }]) @@ -128,7 +128,7 @@ //initialize fourth instance for another app asynchronously Countly.q.push(["init", { app_key: "YOUR_APP_KEY4", //must have different APP key - url: "https://your.domain.count.ly", + url: "https://your.domain.countly", test_mode: true }]) diff --git a/cypress/fixtures/referrer.html b/cypress/fixtures/referrer.html index 5b94d0a5..527414f1 100644 --- a/cypress/fixtures/referrer.html +++ b/cypress/fixtures/referrer.html @@ -4,7 +4,7 @@