Lint again

This commit is contained in:
kevgliss 2015-11-23 15:13:18 -08:00
parent 146c599deb
commit 00f0f957c0
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ lemur.factory('LemurRestangular', function (Restangular, $location, $auth) {
});
RestangularConfigurer.setErrorInterceptor(function(response) {
if (response.status == 400) {
if (response.status === 400) {
if (response.data.message) {
var data = '';
_.each(response.data.message, function (value, key) {