mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[ticket/14139] Fix loading indicator
This commit is contained in:
parent
9e5e2ee3e2
commit
3606e130de
1 changed files with 4 additions and 1 deletions
|
@ -27,7 +27,10 @@ phpbb.isTouch = (window && typeof window.ontouchstart !== 'undefined');
|
|||
*/
|
||||
phpbb.loadingIndicator = function() {
|
||||
if (!$loadingIndicator) {
|
||||
$loadingIndicator = $('<div />', { id: 'loading_indicator' });
|
||||
$loadingIndicator = $('<div />', {
|
||||
id: 'loading_indicator',
|
||||
class: 'loading_indicator',
|
||||
});
|
||||
$loadingIndicator.appendTo('#page-footer');
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue