200: function()

in www/static/js/404.js [94:110]


                200: function () {
                    $.ajax({
                        url: newURL,
                        statusCode: {

                            // redirect to the new URL if it exists
                            200: function () {
                                showNewRedirect(newURL)
                            },

                            // if the new URL doesn't exist, redirect to root
                            404: function() {
                                showRootRedirect(rootURL)
                            }
                        }
                    });
                },