Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (function(){
- var adName = ["clickio_area_%id%"]; // ~ ad slot id
- var checkSlot = function(slotId) {
- return adName.some(function(adName) {
- return slotId.indexOf(adName) !== -1;
- });
- }
- window.googletag = window.googletag || {};
- window.googletag.cmd = window.googletag.cmd || [];
- googletag.cmd.push(function(){
- googletag.pubads().addEventListener("slotRenderEnded", function(event){
- var slotId = event.slot.getSlotId().getId();
- if(checkSlot(slotId) && event.slot.getResponseInformation())
- {
- // there you can check elements height
- }
- });
- googletag.pubads().addEventListener("slotResponseReceived", function(event){
- var slotId = event.slot.getSlotId().getId();
- if(checkSlot(slotId))
- {
- if(!event.slot.getResponseInformation())
- {
- // if unsold - sticky can be hidden
- }
- }
- });
- });
- })();
Add Comment
Please, Sign In to add comment