mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[ticket/15478] Fix core.js $loadingIndicator JavaScript errors
PHPBB3-15478
This commit is contained in:
parent
cc3f77b5fc
commit
c94b7f69b7
1 changed files with 3 additions and 3 deletions
|
@ -28,8 +28,8 @@ phpbb.isTouch = (window && typeof window.ontouchstart !== 'undefined');
|
||||||
phpbb.loadingIndicator = function() {
|
phpbb.loadingIndicator = function() {
|
||||||
if (!$loadingIndicator) {
|
if (!$loadingIndicator) {
|
||||||
$loadingIndicator = $('<div />', {
|
$loadingIndicator = $('<div />', {
|
||||||
id: 'loading_indicator',
|
'id': 'loading_indicator',
|
||||||
class: 'loading_indicator',
|
'class': 'loading_indicator'
|
||||||
});
|
});
|
||||||
$loadingIndicator.appendTo('#page-footer');
|
$loadingIndicator.appendTo('#page-footer');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue