DEV: Update code for eslint object-shorthand-rule. See 4f7aba06c0 (#119)

This commit is contained in:
Martin Brennan 2021-11-10 10:58:31 +10:00 committed by GitHub
parent f2171a51c3
commit 55045bba3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -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();

View File

@ -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];
} }