[READ-ONLY] Mirror of https://github.com/mrgnw/ananas. learn multiple languages at once ananas.xcc.es
0

Configure Feed

Select the types of activity you want to include in your feed.

preventing examples while requesting translation

+7
+7
src/jibs/NewLang.svelte
··· 217 217 // Stop typing animation if it's running 218 218 if (isTyping) { 219 219 clearInterval(typingInterval); 220 + typingInterval = null; 220 221 isTyping = false; 222 + } 223 + 224 + // Also clear cycling interval to prevent new examples from starting 225 + if (cycleInterval) { 226 + clearInterval(cycleInterval); 227 + cycleInterval = null; 221 228 } 222 229 223 230 // Set loading state