fix the no-undef issue

This commit is contained in:
Jacky 2017-11-16 16:24:31 -05:00
parent e07b1859db
commit b3cb7d4bf3

View File

@ -51,7 +51,7 @@ $.i18n.setDictionary(dictionary);
//End internationalization //End internationalization
function deDupUserMetaData(arrObj) { function deDupUserMetaData(arrObj) {
result = _.uniq(JSON.parse(arrObj), function(x){ var result = _.uniq(JSON.parse(arrObj), function(x){
return x.name; return x.name;
}); });