forked from prebid/Prebid.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
43 changed files
with
3,099 additions
and
515 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
## Type of issue | ||
<!-- Is this a bug, feature request, question, etc. ? --> | ||
|
||
## Description | ||
<!-- Describe the issue --> | ||
|
||
## Steps to reproduce | ||
<!-- | ||
If this is a bug, please provide a list of steps to reproduce the issue and | ||
if possible a link to a test page or minimal demo of the problem via | ||
https://jsfiddle.net, http://jsbin.com or similar. | ||
--> | ||
|
||
### Expected results | ||
|
||
### Actual results | ||
|
||
## Platform details | ||
<!-- Which versions of Prebid.js, browser / OS, node, npm, etc. --> | ||
|
||
## Other information | ||
<!-- References to related issue or PR #s, etc. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { ajax } from 'src/ajax'; | ||
import adapter from 'AnalyticsAdapter'; | ||
|
||
const utils = require('../../utils'); | ||
|
||
const url = '//d.rxthdr.com/analytics'; | ||
const analyticsType = 'endpoint'; | ||
|
||
export default utils.extend(adapter( | ||
{ | ||
url, | ||
analyticsType | ||
} | ||
), | ||
{ | ||
track({ eventType, args }) { | ||
ajax(url, (result) => utils.logInfo('Event ' + eventType + ' sent to roxot analytics with result ' + result), JSON.stringify({ eventType, args })); | ||
} | ||
}); |
Oops, something went wrong.