Explorar o código

fix: IE dom.remove() not a function

Sendya %!s(int64=6) %!d(string=hai) anos
pai
achega
8f39724cd9
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/utils/util.js

+ 1 - 1
src/utils/util.js

@@ -30,6 +30,6 @@ export function removeLoadingAnimate(id = '', timeout = 1500) {
     return
   }
   setTimeout(() => {
-    document.getElementById(id).remove()
+    document.body.removeChild(document.getElementById(id))
   }, timeout)
 }