bootstrap-notify icon indicating copy to clipboard operation
bootstrap-notify copied to clipboard

Error on firefox.

Open gustavokataoka opened this issue 8 years ago • 1 comments

I tried on firefox and the notify goes on infinite show, fade... show, fade... even when i click to show one time. I didn't tried on my code, I tried only on your demo page. The version of my firefox is 46.0.

gustavokataoka avatar May 11 '16 14:05 gustavokataoka

Firefox by default sets animation-iteration-count to infinite where every other browser sets this to 1 You need to include the following in your css to resolve the issue. This is on my list to fix. I apologize for the inconvenience.

[data-notify="container"] {
  -moz-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

mouse0270 avatar May 12 '16 13:05 mouse0270