Skip to content

Commit

Permalink
jshint
Browse files Browse the repository at this point in the history
  • Loading branch information
kleinsch committed Sep 6, 2013
1 parent a811235 commit 4c30acf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/lib/analytics.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ Balanced.Analytics = (function () {
}

if(Balanced.currentMarketplace) {
data.marketplaceId = Balanced.currentMarketplace.get('id');
data.marketplaceName = Balanced.currentMarketplace.get('name');
data.marketplaceId = Balanced.currentMarketplace.get('id');
data.marketplaceName = Balanced.currentMarketplace.get('name');
}

var filteredData = Balanced.Utils.filterSensitivePropertiesMap(data);
Expand Down
6 changes: 3 additions & 3 deletions app/lib/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -560,9 +560,9 @@ Balanced.Utils = {
// Takes a hash and filters out all the sensitive data. Only preserves
// top-level properties, since mixpanel doesn't do nested properties
filterSensitivePropertiesMap: function(obj) {
if(!obj) {
return obj;
}
if(!obj) {
return obj;
}

var ret = {};
for (var name in obj) {
Expand Down

0 comments on commit 4c30acf

Please sign in to comment.