Skip to content

Commit

Permalink
update for aja user sync (#1061)
Browse files Browse the repository at this point in the history
* fix company name

* add setting user sync

* fix indent
  • Loading branch information
naoto0822 authored and bretg committed Dec 20, 2018
1 parent d156ab8 commit d62ad79
Showing 1 changed file with 33 additions and 2 deletions.
35 changes: 33 additions & 2 deletions dev-docs/bidders/aja.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: bidder
title: AJA Inc.
description: Prebid AJA Inc. Bidder Adaptor
title: AJA
description: Prebid AJA Bidder Adaptor
top_nav_section: dev_docs
nav_section: reference
hide: true
Expand All @@ -21,3 +21,34 @@ The AJA Bidding adaptor requires setup and approval before beginning. Please rea
| Name | Scope | Description | Example | Type |
|-------|----------|---------------------|------------|----------|
| `asi` | required | ad spot hash code | `'123abc'` | `string` |

### Configuration

AJA recommends setting UserSync by iframe for monetization.

For Prebid.js v1.15.0 and later:

```javascript
pbjs.setConfig({
userSync: {
filterSettings: {
iframe: {
bidders: '*', // '*' represents all bidders
filter: 'include'
}
}
}
});
```

For Prebid.js v1.14.0 and before:

```javascript
pbjs.setConfig({
userSync: {
iframeEnabled: true,
enabledBidders: ['aja']
}
});
```

0 comments on commit d62ad79

Please sign in to comment.