You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ To lazy <a id="loading-snippet">load the Adjust Web SDK through CDN</a> paste th
37
37
38
38
The Adjust Web SDK should be loaded only once per page and it should be initiated once per page load.
39
39
40
-
When loading the sdk through CDN we suggest using minified version. You can target specific version like `https://cdn.adjust.com/adjust-5.2.0.min.js`, or you can target latest version `https://cdn.adjust.com/adjust-latest.min.js` if you want automatic updates without need to change the target file. The sdk files are cached so they are served as fast as possible, and the cache is refreshed every half an hour. If you want updates immediately make sure to target specific version.
40
+
When loading the sdk through CDN we suggest using minified version. You can target specific version like `https://cdn.adjust.com/adjust-5.2.1.min.js`, or you can target latest version `https://cdn.adjust.com/adjust-latest.min.js` if you want automatic updates without need to change the target file. The sdk files are cached so they are served as fast as possible, and the cache is refreshed every half an hour. If you want updates immediately make sure to target specific version.
41
41
42
42
It's also possible to install our sdk through NPM:
Copy file name to clipboardExpand all lines: dist/adjust-latest.js
+24-24Lines changed: 24 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -1246,17 +1246,17 @@ var Promise$1 = function () {
1246
1246
/**
1247
1247
`finally` will be invoked regardless of the promise's fate just as native
1248
1248
try/catch/finally behaves
1249
-
1249
+
1250
1250
Synchronous example:
1251
-
1251
+
1252
1252
```js
1253
1253
findAuthor() {
1254
1254
if (Math.random() > 0.5) {
1255
1255
throw new Error();
1256
1256
}
1257
1257
return new Author();
1258
1258
}
1259
-
1259
+
1260
1260
try {
1261
1261
return findAuthor(); // succeed or fail
1262
1262
} catch(error) {
@@ -1266,17 +1266,17 @@ var Promise$1 = function () {
1266
1266
// doesn't affect the return value
1267
1267
}
1268
1268
```
1269
-
1269
+
1270
1270
Asynchronous example:
1271
-
1271
+
1272
1272
```js
1273
1273
findAuthor().catch(function(reason){
1274
1274
return findOtherAuther();
1275
1275
}).finally(function(){
1276
1276
// author was either found, or not
1277
1277
});
1278
1278
```
1279
-
1279
+
1280
1280
@method finally
1281
1281
@param {Function} callback
1282
1282
@return {Promise}
@@ -2233,7 +2233,7 @@ function addStyle (obj, options) {
2233
2233
// If a transform function was defined, run it on the css
2234
2234
if(options.transform&&obj.css){
2235
2235
result=typeofoptions.transform==='function'
2236
-
? options.transform(obj.css)
2236
+
? options.transform(obj.css)
2237
2237
: options.transform.default(obj.css);
2238
2238
2239
2239
if(result){
@@ -2774,7 +2774,7 @@ function isEmptyEntry(value
2774
2774
|}*/
2775
2775
varGlobals={
2776
2776
namespace: "adjust-sdk"||false,
2777
-
version: "5.2.0"||false,
2777
+
version: "5.2.1"||false,
2778
2778
env: "production"
2779
2779
};
2780
2780
/* harmony default export */varglobals=(Globals);
@@ -2967,7 +2967,7 @@ var Logger = {
2967
2967
2968
2968
2969
2969
2970
-
/*:: //
2970
+
/*:: //
2971
2971
import { type BaseParamsT, type CustomConfigT, type InitOptionsT, type BaseParamsListT, type BaseParamsMandatoryListT, type CustomConfigListT } from './types';*/
import { type NavigatorT, type CreatedAtT, type SentAtT, type WebUuidT, type TrackEnabledT, type PlatformT, type LanguageT, type MachineTypeT, type QueueSizeT, type DefaultParamsT } from './types';*/
import { type UrlT, type DefaultParamsT, type HttpSuccessResponseT, type HttpErrorResponseT, type HttpRequestParamsT, type ErrorCodeT } from './types';*/
7435
7435
7436
7436
@@ -7856,7 +7856,7 @@ function http(options
7856
7856
});
7857
7857
}
7858
7858
// CONCATENATED MODULE: ./src/sdk/backoff.js
7859
-
/*:: //
7859
+
/*:: //
7860
7860
import { type BackOffStrategyT } from './types';*/
7861
7861
7862
7862
/**
@@ -7925,7 +7925,7 @@ function backOff(attempts
7925
7925
// CONCATENATED MODULE: ./src/sdk/listeners.js
7926
7926
7927
7927
7928
-
/*:: //
7928
+
/*:: //
7929
7929
import { type DocumentT } from './types';*/
7930
7930
7931
7931
/*:: type EventCbT = (e: Event) => void*/
@@ -8096,7 +8096,7 @@ function listeners_destroy()
import { type HttpSuccessResponseT, type HttpErrorResponseT, type HttpContinueCbT, type BackOffStrategyT, type WaitT, type UrlT, type MethodT, type RequestParamsT, type HttpRequestParamsT } from './types';*/
import { type HttpSuccessResponseT, type HttpErrorResponseT, type HttpFinishCbT, type WaitT, type UrlT, type MethodT, type RequestParamsT, type ActivityStateMapT } from './types';*/
import { type HttpSuccessResponseT, type HttpErrorResponseT, type HttpFinishCbT, type HttpRetryCbT, type AttributionStateT, type AttributionWhiteListT, type ActivityStateMapT, type AttributionMapT } from './types';*/
9953
9953
9954
9954
@@ -10468,7 +10468,7 @@ function scheduler_destroy()
import { type InitOptionsT, type LogOptionsT, type EventParamsT, type GlobalParamsT, type CustomErrorT, type ActivityStateMapT, type SmartBannerOptionsT } from './types';*/
Copy file name to clipboardExpand all lines: docs/korean/README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ Adjust SDK는 CommonJS와 AMD 환경에서 작동하고 CDN을 통해 로딩될
38
38
39
39
Adjust 웹 SDK는 페이지당 한 번만 로딩되어야 하며 페이지 로딩당 한번만 초기화되어야 합니다.
40
40
41
-
CDN을 통해 SDK를 로딩할 때 축소 버전을 사용하는 것이 좋습니다. `https://cdn.adjust.com/adjust-5.2.0.min.js`와 같은 특정 버전을 타깃팅하거나 대상 파일을 변경할 필요 없이 자동 업데이트를 원하는 경우 최신 버전`https://cdn.adjust.com/adjust-latest.min.js`을 타깃팅 합니다. sdk 파일은 캐싱되어 최대한 빠르게 제공되며 30분 마다 캐시가 새로고침됩니다. 즉시 업데이트를 원하는 경우에는 특정 버전을 타깃팅해야 합니다.
41
+
CDN을 통해 SDK를 로딩할 때 축소 버전을 사용하는 것이 좋습니다. `https://cdn.adjust.com/adjust-5.2.1.min.js`와 같은 특정 버전을 타깃팅하거나 대상 파일을 변경할 필요 없이 자동 업데이트를 원하는 경우 최신 버전`https://cdn.adjust.com/adjust-latest.min.js`을 타깃팅 합니다. sdk 파일은 캐싱되어 최대한 빠르게 제공되며 30분 마다 캐시가 새로고침됩니다. 즉시 업데이트를 원하는 경우에는 특정 버전을 타깃팅해야 합니다.
0 commit comments