[go: nahoru, domu]

Skip to content

Commit

Permalink
ADEN-7711 QA bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Damian Sobczak committed Sep 25, 2018
1 parent 5836770 commit 25166ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/wikia/modules/tracker.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,11 +142,11 @@
params,
userId = isOptedIn ? (
window.wgTrackID
|| ( M && M.getFromHeadDataStore && parseInt( M.getFromHeadDataStore( 'userId' ), 10 ) )
|| ( window.M && window.M.getFromHeadDataStore && parseInt( window.M.getFromHeadDataStore( 'userId' ), 10 ) )
|| 0
) : -1,
wikiVariables = M && M.getFromHeadDataStore && M.getFromHeadDataStore( 'wikiVariables' ) || {},
trackingDimensions = M && M.getFromHeadDataStore && M.getFromHeadDataStore( 'trackingDimensions' ) || [];
wikiVariables = window.M && window.M.getFromHeadDataStore && window.M.getFromHeadDataStore( 'wikiVariables' ) || {},
trackingDimensions = window.M && window.M.getFromHeadDataStore && window.M.getFromHeadDataStore( 'trackingDimensions' ) || [];

timeout = timeout || 3000;

Expand Down

0 comments on commit 25166ef

Please sign in to comment.