9 0 14
This commit is contained in:
parent
3902c26971
commit
3cffbe18fc
4 changed files with 5 additions and 2 deletions
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@openreplay/tracker",
|
||||
"description": "The OpenReplay tracker main package",
|
||||
"version": "9.0.13",
|
||||
"version": "9.0.14",
|
||||
"keywords": [
|
||||
"logging",
|
||||
"replay"
|
||||
|
|
|
|||
|
|
@ -168,9 +168,10 @@ export default class API {
|
|||
if (options.resetTabOnWindowOpen) {
|
||||
sessStorage.removeItem(options.session_tabid_key || '__openreplay_tabid')
|
||||
}
|
||||
wOpen.call(window, ...args)
|
||||
const result = wOpen.call(window, ...args)
|
||||
app.resetNextPageSession(false)
|
||||
sessStorage.setItem(options.session_tabid_key || '__openreplay_tabid', tabId)
|
||||
return result
|
||||
}
|
||||
})
|
||||
app.attachStopCallback(() => {
|
||||
|
|
|
|||
|
|
@ -168,6 +168,7 @@ export default function (app: App, options?: MouseHandlerOptions): void {
|
|||
mouseTarget = null
|
||||
selectorMap = {}
|
||||
if (checkIntervalId) {
|
||||
// @ts-ignore
|
||||
clearInterval(checkIntervalId)
|
||||
}
|
||||
})
|
||||
|
|
|
|||
|
|
@ -230,6 +230,7 @@ export default function (app: App, opts: Partial<Options> = {}) {
|
|||
return response
|
||||
})
|
||||
}
|
||||
// @ts-ignore
|
||||
context.fetch = trackFetch
|
||||
|
||||
/* ====== <> ====== */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue