1
0
Fork 0

stop spinning cog on install/remove complete

This commit is contained in:
Kim, Jimin 2022-02-02 09:47:35 +09:00
parent 93c5daeb1e
commit be74034a13

View file

@ -39,6 +39,14 @@
store.spinCog.subscribe((value) => {
spinCog = value
})
store.wasInstallSuccessful.subscribe((value) => {
spinCog = !value
})
store.wasRemoveSuccessful.subscribe((value) => {
spinCog = !value
})
</script>
<!-- Allow user to go back to home until they click the install button -->