| | 79 | function ShowThrobber() |
| | 80 | { |
| | 81 | var throbberParent = document.getElementById( 'throbberBlock' ) ; |
| | 82 | var frm = document.getElementById( 'frmMain' ) ; |
| | 83 | var html = '<img src="%%" width="28" height="28" border="0" /><br />Loading...'.replace( '%%', oEditor.FCKConfig.SkinPath + 'images/dialog.loading.gif' ) ; |
| | 84 | throbberParent.innerHTML = html ; |
| | 85 | |
| | 86 | var frmCoords = oEditor.FCKTools.GetDocumentPosition( window, frm ) ; |
| | 87 | var x = frmCoords.x + ( frm.offsetWidth - throbberParent.offsetWidth ) / 2 ; |
| | 88 | var y = frmCoords.y + ( frm.offsetHeight - throbberParent.offsetHeight ) / 2 ; |
| | 89 | throbberParent.style.left = parseInt(x) + 'px' ; |
| | 90 | throbberParent.style.top = parseInt(y) + 'px' ; |
| | 91 | } |
| | 92 | |
| | 93 | function HideThrobber() |
| | 94 | { |
| | 95 | var throbberParent = document.getElementById( 'throbberBlock' ) ; |
| | 96 | throbberParent.parentNode.removeChild( throbberParent ) ; |
| | 97 | } |
| | 98 | |