;
(function ($) {
$.extend({
birtLoading: function (action) {
var loadingHtml = '
' +
'
' +
'
' +
'
' +
'
' +
'Birt报表' +
'
' +
'
' +
' ' +
' ' +
' ' +
'
' +
'
';
$('.birt-loading').remove();
$('body').append(loadingHtml);
if (action == undefined || action == 'show') {
$(".birt-loading").show();
} else {
$(".birt-loading").hide();
}
}
});
})(jQuery);