Skip to content

Commit 3d28ee9

Browse files
committed
Revert "loading indicator now uses ball-scale and is blue"
This reverts commit 2c4c5a8.
1 parent 7f96eff commit 3d28ee9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

mfr/server/static/js/mfr.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,11 @@
4949
// The the OSF asks for the CSS for this spinner (/static/css/mfr)
5050
// MFR itself does not use it anywhere
5151
var spinner = document.createElement('div');
52-
spinner.setAttribute('class', 'ball-scale ball-dark ball-scale-blue text-center');
53-
spinner.appendChild(document.createElement('div'));
52+
spinner.setAttribute('class', 'ball-pulse ball-dark text-center');
53+
for(i=0; i < 3; i++){
54+
spinner.appendChild(document.createElement('div'));
55+
}
56+
5457
return spinner;
5558
}
5659

0 commit comments

Comments
 (0)