Skip to content

Commit

Permalink
version
Browse files Browse the repository at this point in the history
  • Loading branch information
turtledreams committed Dec 2, 2024
1 parent fab053b commit 25dfc6d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions examples/example_async.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
//provide countly initialization parameters
Countly.app_key = "YOUR_APP_KEY";
Countly.url = "https://your.server.ly"; //your server goes here
Countly.debug = true;
Countly.loadAPMScriptsAsync = true;

if(Countly.app_key === "YOUR_APP_KEY" || Countly.url === "https://your.server.ly"){
console.warn("Please do not use default set of app key and server url")
Expand All @@ -23,6 +25,9 @@
//track sessions automatically
Countly.q.push(['track_sessions']);

//track performance automatically
Countly.q.push(["track_performance"]);

//track sessions automatically
Countly.q.push(['track_pageview']);

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "countly-sdk-js",
"version": "24.11.0",
"version": "24.11.1",
"description": "Countly JavaScript SDK",
"type": "module",
"main": "Countly.js",
Expand Down

0 comments on commit 25dfc6d

Please sign in to comment.