Skip to content

Commit 79e5837

Browse files
committed
Fix lint issues
1 parent 3ec6af1 commit 79e5837

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

plugin/www/mparticle.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -445,15 +445,15 @@ var mparticle = {
445445
SYSTEM: 'SYSTEM'
446446
},
447447

448-
selectPlacements: function(identifier, attributes, config) {
448+
selectPlacements: function (identifier, attributes, config) {
449449
var defaultConfig = {
450450
colorMode: this.RoktColorMode.SYSTEM,
451451
cacheConfig: {
452452
cacheDurationInSeconds: 5400,
453453
cacheAttributes: {}
454454
},
455455
edgeToEdgeDisplay: true
456-
};
456+
}
457457

458458
var finalConfig = {
459459
colorMode: {
@@ -464,9 +464,9 @@ var mparticle = {
464464
cacheAttributes: (config && config.cacheConfig && config.cacheConfig.cacheAttributes) || defaultConfig.cacheConfig.cacheAttributes
465465
},
466466
edgeToEdgeDisplay: (config && config.edgeToEdgeDisplay !== undefined) ? config.edgeToEdgeDisplay : defaultConfig.edgeToEdgeDisplay
467-
};
467+
}
468468

469-
exec('selectPlacements', [identifier, attributes || {}, finalConfig]);
469+
exec('selectPlacements', [identifier, attributes || {}, finalConfig])
470470
}
471471
}
472472

0 commit comments

Comments
 (0)