Skip to content

Commit

Permalink
add browserBlackList to documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
DimaIntentIQ committed Jun 11, 2024
1 parent 69c7e0e commit fa21172
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions modules/intentIqIdSystem.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Please find below list of paramters that could be used in configuring Intent IQ
| params.pai | Optional | String | This is the partner customer ID / advertiser ID, it is a dynamic value attached to the request. | `"advertiser1"` |
| params.callback | Required | Function | This is a callback which is trigered with data and AB group | `(data, group) => console.log({ data, group })` |
| params.timeoutInMillis | Optional | Number | This is the timeout in milliseconds, which defines the maximum duration before the callback is triggered. The default value is 500. | `450` |
| params.browserBlackList | Optional |  String | This is the name of a browser that can be added to a blacklist. | `"chrome"` |

### Configuration example

Expand Down Expand Up @@ -76,6 +77,7 @@ pbjs.setConfig({
pcid: PCID_VARIABLE, // string value, dynamically loaded into a variable before setting the configuration
pai: PAI_VARIABLE , // string value, dynamically loaded into a variable before setting the configuration
timeoutInMillis: 500,
browserBlackList: "chrome",
callback: (data, group) => window.pbjs.requestBids()
},
storage: {
Expand Down

0 comments on commit fa21172

Please sign in to comment.