spacing cleanup

This commit is contained in:
Tyler Renelle 2013-09-17 10:50:24 -04:00
parent bb2b17b24e
commit 1d3728ea77

View file

@ -25,7 +25,6 @@ angular.module('userServices', []).
user.apiToken = user._id = ''; // we use id / apitoken to determine if registered
//than we try to load localStorage
if (localStorage.getItem(STORAGE_USER_ID)) {
_.extend(user, JSON.parse(localStorage.getItem(STORAGE_USER_ID)));
}
@ -94,9 +93,7 @@ angular.module('userServices', []).
});
settings.fetching = false;
//Notification.push({type:'text', text:"We're offline"})
});
}
@ -206,6 +203,5 @@ angular.module('userServices', []).
}
return userServices;
}
]);