Skip to content

Commit

Permalink
chore: lint JS
Browse files Browse the repository at this point in the history
  • Loading branch information
bjagg committed Sep 17, 2024
1 parent caab985 commit 6613c6e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ var uportal = uportal || {};
var configureDefaults = function (propertyConfig) {
//console.log(propertyConfig);
var defaults = propertyConfig.config || [];
_.each(defaults, function(setting) {
_.each(defaults, function (setting) {
// each setting is an object that might have more than 1 key-value pair
//console.log(setting);
_.each(Object.keys(setting), function(key) {
_.each(Object.keys(setting), function (key) {
up.gtag('set', key, setting[key]);
});
});
Expand Down

0 comments on commit 6613c6e

Please sign in to comment.