mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Require single quotes
This commit is contained in:
@ -10,7 +10,7 @@ export function showLoader() {
|
||||
|
||||
export function hideLoader() {
|
||||
//Sets up a 2-step animation. Spinner blurs/fades out, and then the loader shadow does the same.
|
||||
$(`#load-spinner`).on("transitionend webkitTransitionEnd oTransitionEnd MSTransitionEnd", function () {
|
||||
$('#load-spinner').on('transitionend webkitTransitionEnd oTransitionEnd MSTransitionEnd', function () {
|
||||
//console.log('FADING BLUR SCREEN')
|
||||
$(`#${ELEMENT_ID}`)
|
||||
.animate({ opacity: 0 }, 300, function () {
|
||||
@ -20,7 +20,7 @@ export function hideLoader() {
|
||||
})
|
||||
|
||||
//console.log('BLURRING SPINNER')
|
||||
$(`#load-spinner`)
|
||||
$('#load-spinner')
|
||||
.css({
|
||||
'filter': 'blur(15px)',
|
||||
'opacity': '0',
|
||||
|
Reference in New Issue
Block a user