manake

Results 13 comments of manake

https://user-images.githubusercontent.com/6874031/180666775-b7eecac4-bd76-4598-b5d6-71dcea3c6366.mp4

Thanks, it works with `OnModification` indeed but `editor:AddText("text")` doesn't work inside that callback. Yes, I want to type for example `x` and `[tab]` and have it covert it to `y`...

My very first impression was that `sub` was a bit confusing to me. I was searching the documentation for full `subtract`. As a non-native English speaker such `sub` shortcut is...

To an average user, like me, whatever is easier to find and remember is more convenient. And the first choice to look for is a phrase `subtract`. `sub` is a...

(With inclination towards `subtract`. It's not "verbose". It's "default". `sub` is an arbitrary shortcut, not a default word.)

I think there may be a bug in `_now()` function. ``` let timer = new Timer(); // Let it run to for example 10 seconds. timer = null; // Wait...

Thank you! It seems to work now. (There's also a minor inconsistency that `if ( document.hidden === false ) this.reset();` is lacking curly braces but all other if statements have...

Why basic JavaScript to obtain position doesn't work? It should work. Please post a code example. ``` // jQuery: let positionLeft = $('.box').css('left'); // Plain JavaScript: let box = document.querySelector('.box').getBoundingClientRect();...

CSS Nesting is shipping in 2 days to Chrome 112. VS Code is currently not highlighting it correctly.

This "workaround" isn't a workaround, it's the correct way to do it. IMO, anime.js should be kept as simple as possible and you should create your own logic for most...