converted blacklist to new error handler

pull/1108/head
Justin Richer 2016-07-18 15:53:58 -04:00
parent ed7536837b
commit bba0b2fcd2
1 changed files with 3 additions and 32 deletions

View File

@ -44,7 +44,7 @@ var BlackListListView = Backbone.View.extend({
'<span class="label" id="loading-blacklist">' + $.t('admin.blacklist') + '</span> ' '<span class="label" id="loading-blacklist">' + $.t('admin.blacklist') + '</span> '
); );
$.when(this.collection.fetchIfNeeded({success:function(e) {$('#loading-blacklist').addClass('label-success');}})) $.when(this.collection.fetchIfNeeded({success:function(e) {$('#loading-blacklist').addClass('label-success');}, error:app.errorHandlerView.handleError()}))
.done(function() { .done(function() {
$('#loadingbox').sheet('hide'); $('#loadingbox').sheet('hide');
callback(); callback();
@ -121,20 +121,7 @@ var BlackListListView = Backbone.View.extend({
_self.collection.add(item); _self.collection.add(item);
_self.render(); _self.render();
}, },
error:function(error, response) { error:app.errorHandlerView.handleError()
//Pull out the response text.
var responseJson = JSON.parse(response.responseText);
//Display an alert with an error message
$('#modalAlert div.modal-header').html(responseJson.error);
$('#modalAlert div.modal-body').html(responseJson.error_description);
$("#modalAlert").modal({ // wire up the actual modal functionality and show the dialog
"backdrop" : "static",
"keyboard" : true,
"show" : true // ensure the modal is shown immediately
});
}
}); });
} }
@ -182,23 +169,7 @@ var BlackListWidgetView = Backbone.View.extend({
}); });
}); });
}, },
error:function (model, response) { error:app.errorHandlerView.handleError()
//Pull out the response text.
var responseJson = {error: 'Error', error_description: 'Error.'};
if (response) {
responseJson = JSON.parse(response.responseText);
}
//Display an alert with an error message
$('#modalAlert div.modal-header').html(responseJson.error);
$('#modalAlert div.modal-body').html(responseJson.error_description);
$("#modalAlert").modal({ // wire up the actual modal functionality and show the dialog
"backdrop" : "static",
"keyboard" : true,
"show" : true // ensure the modal is shown immediately
});
}
}); });
_self.parentView.delegateEvents(); _self.parentView.delegateEvents();