MINOR Using global ajaxComplete handlers for LeftAndMain instead of limiting to error handlers to allow usage of X-Status messages throughout the CMS

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@92827 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2009-11-21 03:20:05 +00:00
parent 26df8bd9af
commit 233e6e970f

View File

@ -5,18 +5,20 @@
var ss_MainLayout;
(function($) {
$(function() {
// global ajax error handlers
$('.LeftAndMain').bind('ajaxComplete', function(e, xmlhttp, settings) {
var status = (xmlhttp.status >= 400) ? 'bad' : 'good';
var msg = (xmlhttp.getResponseHeader('X-Status')) ? xmlhttp.getResponseHeader('X-Status') : xmlhttp.statusText;
// Don't display standard '200 OK' messages
if(msg && msg != 'OK') statusMessage(msg, status);
});
});
$.concrete('ss', function($){
// setup jquery.concrete
$.concrete.warningLevel = $.concrete.WARN_LEVEL_BESTPRACTISE;
// global ajax error handlers
$.ajaxSetup({
error: function(xmlhttp, status, error) {
var msg = (xmlhttp.getResponseHeader('X-Status')) ? xmlhttp.getResponseHeader('X-Status') : xmlhttp.statusText;
statusMessage(msg, 'bad');
}
});
/**
* Available Custom Events: