mouse0270 / bootstrap-notify

Turns standard Bootstrap alerts into "Growl-like" notifications.
http://bootstrap-notify.remabledesigns.com/
MIT License
2.25k stars 642 forks source link

Error on firefox. #144

Open gustavokataoka opened 8 years ago

gustavokataoka commented 8 years ago

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.

mouse0270 commented 8 years ago

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;
}