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++;
|
||||
|
||||
this.divs.push({
|
||||
divId: divId,
|
||||
publisherId: publisherId,
|
||||
zoneId: zoneId,
|
||||
dimensions: dimensions,
|
||||
divId,
|
||||
publisherId,
|
||||
zoneId,
|
||||
dimensions,
|
||||
});
|
||||
|
||||
this._super();
|
||||
|
|
|
@ -182,7 +182,7 @@ function defineSlot(
|
|||
|
||||
ad.addService(window.googletag.pubads());
|
||||
|
||||
ads[divId] = { ad: ad, width: width, height: height };
|
||||
ads[divId] = { ad, width, height };
|
||||
return ads[divId];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue