mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Merge pull request #5060 from dsinn/ticket/15478
[ticket/15478] Fix core.js $loadingIndicator JavaScript errors
This commit is contained in:
commit
e23b671d32
1 changed files with 3 additions and 3 deletions
|
@ -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');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue