Skip to content

Commit

Permalink
Fixed issue with "Ads Flickering"
Browse files Browse the repository at this point in the history
The brakets were missing.
I added them and tested it.
Now it works like it shoud.

Thanks!
  • Loading branch information
AndreasReitberger committed Feb 8, 2016
1 parent c34dd9c commit 1668d8a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ads/cocoon-ads/runtime.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,10 @@ cr.plugins_.ATPAds = function(runtime) {
this.banner.show();
}
else
{
this.bannerReady = false;
this.banner.load();
}
};
Acts.prototype.HideBanner = function() {
if(showBanner){
Expand Down Expand Up @@ -233,4 +235,4 @@ cr.plugins_.ATPAds = function(runtime) {

pluginProto.acts = new Acts();

}());
}());

0 comments on commit 1668d8a

Please sign in to comment.