Dan Rogers
Dan Rogers
FWIW, in my animation library.. I opted to ignore the `requestAnimationFrame` callback parameter, and decided to call the `now()` function on each frame. You can find the shims here if...
Nice! I like the simplicity of the first one, but perhaps a new method would help us create and re-use the sequences later? Being able to stop / start them...
:+1: to everything @rvagg said. If we wanted to sequence tweens and morphs together, how would that look? It's a little confusing because `.tween()` is unrelated to the `el`. This...
While we're talking about `tween()` vs `morpheus()` I always sort of wish they were unified. Like as an alternative to using `tween`, It would be nice to operate on js...
Not necessarily a fix, but you can disable this behavior by adding: ```js "auto_close_tags": false ``` To your "Settings - Syntax Specific" json file.
Doesn't fix the issue, but it is worth noting you can assign keyboard shortcuts to your snippets instead of relying on tab. **Sublime Text > Preferences > Key Bindings** ```json...
I think I am running into this issue as well. When I try to implement the following code on mouseover / mouseout, the transforms get reset if mouseout gets dispatched...