DEV: Update code for eslint object-shorthand-rule. See 4f7aba06c0
(#119)
This commit is contained in:
parent
f2171a51c3
commit
55045bba3c
|
@ -61,10 +61,10 @@ export default AdComponent.extend({
|
||||||
_c++;
|
_c++;
|
||||||
|
|
||||||
this.divs.push({
|
this.divs.push({
|
||||||
divId: divId,
|
divId,
|
||||||
publisherId: publisherId,
|
publisherId,
|
||||||
zoneId: zoneId,
|
zoneId,
|
||||||
dimensions: dimensions,
|
dimensions,
|
||||||
});
|
});
|
||||||
|
|
||||||
this._super();
|
this._super();
|
||||||
|
|
|
@ -182,7 +182,7 @@ function defineSlot(
|
||||||
|
|
||||||
ad.addService(window.googletag.pubads());
|
ad.addService(window.googletag.pubads());
|
||||||
|
|
||||||
ads[divId] = { ad: ad, width: width, height: height };
|
ads[divId] = { ad, width, height };
|
||||||
return ads[divId];
|
return ads[divId];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue