From 6039fdd6b3002f65ecd0121b7ca6d31e49b9590e Mon Sep 17 00:00:00 2001 From: Adam Young Date: Wed, 1 Jun 2011 09:34:44 -0400 Subject: redirect on error Code for redirecting on error has been moved to IPA.facet so it can be called from both details and assocaiton facets. --- install/ui/entity.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'install/ui/entity.js') diff --git a/install/ui/entity.js b/install/ui/entity.js index 4b6ce1d0e..030bcb016 100644 --- a/install/ui/entity.js +++ b/install/ui/entity.js @@ -130,6 +130,25 @@ IPA.facet = function (spec) { return $('.content', that.container); }; + + that.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('

Error: '+error_thrown.name+'

'); + details.append('

'+error_thrown.message+'

'); + } + }; + + // methods that should be invoked by subclasses that.facet_init = that.init; that.facet_create_header = that.create_header; -- cgit