mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-15 22:26:32 +02:00
Merge pull request #5060 from dsinn/ticket/15478
[ticket/15478] Fix core.js $loadingIndicator JavaScript errors
This commit is contained in:
@ -27,9 +27,9 @@ 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');
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user