Index: trunk/kernel/admin_templates/incs/ajax.js =================================================================== diff -u -N -r5110 -r5302 --- trunk/kernel/admin_templates/incs/ajax.js (.../ajax.js) (revision 5110) +++ trunk/kernel/admin_templates/incs/ajax.js (.../ajax.js) (revision 5302) @@ -121,26 +121,8 @@ /*$div.style.border = '1px solid green'; $div.style.backgroundColor = '#FF0000';*/ - $div.innerHTML = '
'+Request.progressText+'
'+escape(Request.progressText)+'
'; - - /*var $table = addElement($div, 'table'); - $table.style.width = '100%'; - $table.style.height = '100%'; - var $tbody = addElement($table, 'tbody'); - var $row = addElement($tbody, 'tr'); - var $cell = addElement($row, 'td'); - $cell.style.textAlign = 'center'; - - $cell.appendChild( document.createTextNode(Request.progressText) ); - addElement($cell, 'br'); - - var $img = addElement($cell, 'img'); - $img.src = 'img/ajax_progress.gif'; - $img.align = 'absmiddle'; - $img.width = 100; - $img.height = 7; - $img.alt = Request.progressText;*/ - + var $image_base = img_path.replace('#MODULE#', 'kernel'); + $div.innerHTML = '
'+Request.progressText+'
'+escape(Request.progressText)+'
'; return $div; }