aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2017-12-18 20:06:17 +0100
committerMarc Alexander <admin@m-a-styles.de>2017-12-18 20:06:17 +0100
commite23b671d322e329d7c4e1ab80bc7d6e37d130d54 (patch)
tree975e2dc9586a4cd4ed8df95ac9de45286e582e5d /phpBB
parent57772a0d327ff97490e952e275a0d26e70fea753 (diff)
parentc94b7f69b7e0d53ff4e382501ee9239ad627e55b (diff)
downloadforums-e23b671d322e329d7c4e1ab80bc7d6e37d130d54.tar
forums-e23b671d322e329d7c4e1ab80bc7d6e37d130d54.tar.gz
forums-e23b671d322e329d7c4e1ab80bc7d6e37d130d54.tar.bz2
forums-e23b671d322e329d7c4e1ab80bc7d6e37d130d54.tar.xz
forums-e23b671d322e329d7c4e1ab80bc7d6e37d130d54.zip
Merge pull request #5060 from dsinn/ticket/15478
[ticket/15478] Fix core.js $loadingIndicator JavaScript errors
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/assets/javascript/core.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/assets/javascript/core.js b/phpBB/assets/javascript/core.js
index 359afb1ec4..069f9089c2 100644
--- a/phpBB/assets/javascript/core.js
+++ b/phpBB/assets/javascript/core.js
@@ -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');
}