ermouth / jQuery.my

jQuery.my is a plugin that reactively binds form controls with js data structures.

Home Page:https://jquerymy.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Styler corrupts @keyframes sections

ermouth opened this issue · comments

Animation definitions like

{
  style:{
    '@keyframes somename': 'from {} to{}'
  }
}

are prefixed as other class names during init. Result breaks animations, cause looks like this:

<style>
@keyframes somename {
  .my-manifest-manid from {}
  .my-manifest-manid to {}
}
</style>