Skip to content

Commit

Permalink
MINOR Moved X-ControllerURL handling into global ajax response handle…
Browse files Browse the repository at this point in the history
…rs to avoid code duplication
  • Loading branch information
chillu committed Apr 4, 2012
1 parent 0414e42 commit c2b7416
Showing 1 changed file with 9 additions and 15 deletions.
24 changes: 9 additions & 15 deletions admin/javascript/LeftAndMain.js
Expand Up @@ -32,8 +32,16 @@ jQuery.noConflict();

$(window).bind('resize', positionLoadingSpinner).trigger('resize');

// global ajax error handlers
// global ajax handlers
$.ajaxSetup({
complete: function(xhr) {
// Simulates a redirect on an ajax response - just exchange the URL without re-requesting it.
// Causes non-pushState browser to re-request the URL, so ignore for those.
if(window.History.enabled && !History.emulated.pushState) {
var url = xmlhttp.getResponseHeader('X-ControllerURL');
if(url) window.History.replaceState({}, '', url);
}
},
error: function(xmlhttp, status, error) {
if(xmlhttp.status < 200 || xmlhttp.status > 399) {
var msg = (xmlhttp.getResponseHeader('X-Status')) ? xmlhttp.getResponseHeader('X-Status') : xmlhttp.statusText;
Expand Down Expand Up @@ -87,13 +95,6 @@ jQuery.noConflict();
});

$('.cms-edit-form').live('reloadeditform', function(e, data) {
// Simulates a redirect on an ajax response - just exchange the URL without re-requesting it
// Causes non-pushState browser to re-request the URL, so ignore for those.
if(window.History.enabled && !History.emulated.pushState) {
var url = data.xmlhttp.getResponseHeader('X-ControllerURL');
if(url) window.history.replaceState({}, '', url);
}

self.redraw();
});

Expand Down Expand Up @@ -251,13 +252,6 @@ jQuery.noConflict();
newContentEl.css('visibility', 'visible');
newContentEl.removeClass('loading');

// Simulates a redirect on an ajax response - just exchange the URL without re-requesting it.
// Causes non-pushState browser to re-request the URL, so ignore for those.
if(window.History.enabled && !History.emulated.pushState) {
var url = xhr.getResponseHeader('X-ControllerURL');
if(url) window.History.replaceState({}, '', url);
}

self.trigger('afterstatechange', {data: data, status: status, xhr: xhr, element: newContentEl});
},
error: function(xhr, status, e) {
Expand Down

0 comments on commit c2b7416

Please sign in to comment.