So I am using steroids.js and the library provides me with this event:
document.addEventListener("visibilitychange", onVisibilityChange, false);
function onVisibilityChange() {
}
This works if I just put it in my JS file, but how does that translate in a View with Backbone.js? How I implement this with the framework? I tried with .on in the initialize function, but it does not seem to work.
1 - Using
document
as an element:2 - Using custom
el
:If a view have the
document
asview.el
, then you could listen to custom DOM events using theevents
hash.If not, then you can listen to an event manually in the
initialize
method.This will work, so if it haven't for you, it can be a race condition (check any async behavior, etc).
On an important side note. It is really important to clear custom binded events once your view is removed. This is usually handle this way:
If you do not clean your events after, you'll create memory leaks. And this could eventually crash your application.