cobbdb / harmony

Simplify your DFP business logic.
MIT License
25 stars 5 forks source link

Group slots in show actions #56

Closed cobbdb closed 8 years ago

cobbdb commented 8 years ago

harmony.show action is calling refresh on each slot instead of grouping them into a single ad call.

googletag.refresh([slotA]);
googletag.refresh([slotB]);

... instead it should be ...

googletag.refresh([slotA, slotB]);