mirror of
https://github.com/phpbb/phpbb.git
synced 2025-03-21 16:10:38 +01:00
Merge pull request #5060 from dsinn/ticket/15478
[ticket/15478] Fix core.js $loadingIndicator JavaScript errors
This commit is contained in:
commit
e23b671d32
@ -27,9 +27,9 @@ phpbb.isTouch = (window && typeof window.ontouchstart !== 'undefined');
|
||||
*/
|
||||
phpbb.loadingIndicator = function() {
|
||||
if (!$loadingIndicator) {
|
||||
$loadingIndicator = $('<div />', {
|
||||
id: 'loading_indicator',
|
||||
class: 'loading_indicator',
|
||||
$loadingIndicator = $('<div />', {
|
||||
'id': 'loading_indicator',
|
||||
'class': 'loading_indicator'
|
||||
});
|
||||
$loadingIndicator.appendTo('#page-footer');
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user