Firefox addon - Notification bar with timer -


in firefox add-on, set temporary notification top notification bar. temporary, mean notification disappear after couple seconds. possible?

thank you.

notifications don't have automatic timeout, can set own timeout , call removenotification remove it.

var box = bar.appendnotification(label, value, image, priority, buttons); settimeout(function() { bar.removenotification(box); }, delay); 

Comments

Popular posts from this blog

jQuery clickable div with working mailto link inside -

java - Getting corefrences with Standard corenlp package -

WPF: binding viewmodel property of type DateTime to Calendar inside ItemsControl -