Add loader to iframe and remove it when iframe is done loading.

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@10810 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
phamt 2011-10-18 02:10:23 +00:00
parent 46d24d87bd
commit c8f31b0bdb

View File

@ -770,14 +770,25 @@ function createIFrame(src) {
var iframe = $('<iframe></iframe>').attr('src', src).css({
'display': 'inline-block',
'border': '0px',
'margin': '10px 0px',
'width': '90%'
'margin': '10px 20px',
'width': '95%'
});
var loader = createLoader('iLoader').css({
'display': 'inline-block',
'margin': '10px 0px'
});
infoBar.append(icon);
infoBar.append(loader);
infoBar.append(iframe);
infoBar.append(close);
// Remove loader when done
iframe.load(function() {
loader.remove();
});
return infoBar;
}