fix(tracker):update docs links

This commit is contained in:
Alex Kaminskii 2023-01-23 12:28:06 +01:00
parent dafce70d41
commit c51fa0bf4f
3 changed files with 4 additions and 4 deletions

View file

@ -209,8 +209,8 @@ export default class App {
// === Back compatibility with Fetch/Axios plugins ===
if (message[0] === MType.Fetch) {
this._usingOldFetchPlugin = true
deprecationWarn('Fetch plugin', "'network' init option")
deprecationWarn('Axios plugin', "'network' init option")
deprecationWarn('Fetch plugin', "'network' init option", '/installation/network-options')
deprecationWarn('Axios plugin', "'network' init option", '/installation/network-options')
}
if (this._usingOldFetchPlugin && message[0] === MType.NetworkRequest) {
return

View file

@ -352,7 +352,7 @@ export default abstract class Observer {
this.clear()
}
// ISSSUE (nodeToBinde should be the same as node. Look at the comment about 0-node at the beginning of the file.)
// ISSSUE (nodeToBinde should be the same as node in all cases. Look at the comment about 0-node at the beginning of the file.)
// TODO: use one observer instance for all iframes/shadowRoots (composition instiad of inheritance)
protected observeRoot(
node: Node,

View file

@ -50,7 +50,7 @@ export type Options = Partial<
__DISABLE_SECURE_MODE?: boolean
}
const DOCS_SETUP = '/installation/setup-or'
const DOCS_SETUP = '/installation/javascript-sdk'
function processOptions(obj: any): obj is Options {
if (obj == null) {