@brndts/brndts-ads 1.14.9 → 1.14.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +10 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -72400,6 +72400,16 @@ var PrebidGAM = /*#__PURE__*/ function() {
|
|
72400
72400
|
value: function request(slotId, containerId, callback) {
|
72401
72401
|
var _window_pbjs;
|
72402
72402
|
var PREBID_TIMEOUT = 1e3;
|
72403
|
+
if (!tcf_ready) {
|
72404
|
+
console.warn("TCF not ready, waiting for consent data.");
|
72405
|
+
var container = document.createElement("div");
|
72406
|
+
container.id = containerId;
|
72407
|
+
var script = document.createElement("script");
|
72408
|
+
script.innerHTML = '\n window.googletag.cmd.push(function() {\n googletag.pubads().refresh(googletag.pubads().getSlots().filter(slot => slot.getSlotElementId() === "'.concat(containerId, '"));\n });');
|
72409
|
+
container.appendChild(script);
|
72410
|
+
callback(container);
|
72411
|
+
return;
|
72412
|
+
}
|
72403
72413
|
(_window_pbjs = window.pbjs) === null || _window_pbjs === void 0 ? void 0 : _window_pbjs.que.push(function() {
|
72404
72414
|
var _window_pbjs;
|
72405
72415
|
(_window_pbjs = window.pbjs) === null || _window_pbjs === void 0 ? void 0 : _window_pbjs.requestBids({
|