Skip to content

Commit e25035e

Browse files
authored
22.02.2 (#198)
* 22.02.2 * changelog
1 parent 8f5b4e8 commit e25035e

File tree

5 files changed

+26
-23
lines changed

5 files changed

+26
-23
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 22.02.2
2+
- Fixed a bug where the minified version had issues with the heatmap feature
3+
14
## 22.02.1
25
- Fixed a bug where heatmap files were not loading
36

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ or
3030

3131
Countly web SDK is available on CDNJS. Use either
3232

33-
[https://cdnjs.cloudflare.com/ajax/libs/countly-sdk-web/22.02.1/countly.min.js](https://cdnjs.cloudflare.com/ajax/libs/countly-sdk-web/22.02.1/countly.min.js)
33+
[https://cdnjs.cloudflare.com/ajax/libs/countly-sdk-web/22.02.2/countly.min.js](https://cdnjs.cloudflare.com/ajax/libs/countly-sdk-web/22.02.2/countly.min.js)
3434

3535
or
3636

lib/countly.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
*/
158158
Countly.onload = Countly.onload || [];
159159

160-
var SDK_VERSION = "22.02.1";
160+
var SDK_VERSION = "22.02.2";
161161
var SDK_NAME = "javascript_native_web";
162162

163163
var urlParseRE = /^(((([^:\/#\?]+:)?(?:(\/\/)((?:(([^:@\/#\?]+)(?:\:([^:@\/#\?]+))?)@)?(([^:\/#\?\]\[]+|\[[^\/\]@#?]+\])(?:\:([0-9]+))?))?)?)?((\/?(?:[^\/\?#]+\/+)*)([^\?#]*)))?(\?[^#]+)?)(#.*)?/;
@@ -4265,8 +4265,8 @@
42654265
loaded = true;
42664266
};
42674267
if (callback) {
4268-
fileRef.onreadystatechange = callbackFunction();
4269-
fileRef.onload = callbackFunction();
4268+
fileRef.onreadystatechange = callbackFunction;
4269+
fileRef.onload = callbackFunction;
42704270
}
42714271
document.getElementsByTagName("head")[0].appendChild(fileRef);
42724272
}

0 commit comments

Comments
 (0)