diff options
Diffstat (limited to 'install/ui/details.js')
-rw-r--r-- | install/ui/details.js | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/install/ui/details.js b/install/ui/details.js index d9c948e9..80e7bd9e 100644 --- a/install/ui/details.js +++ b/install/ui/details.js @@ -640,22 +640,7 @@ IPA.details_facet = function(spec) { that.load(data.result.result); }; - command.on_error = function(xhr, text_status, error_thrown) { - if (that.entity.redirect_facet) { - var current_entity = that.entity; - while (current_entity.containing_entity){ - current_entity = current_entity.containing_entity; - } - IPA.nav.show_page( - current_entity.name, - that.entity.redirect_facet); - return; - }else{ - var details = $('.details', that.container).empty(); - details.append('<p>Error: '+error_thrown.name+'</p>'); - details.append('<p>'+error_thrown.message+'</p>'); - } - }; + command.on_error = that.on_error; command.execute(); }; |