Banner Listener
A listener to handle the states of a Banner.
Declared In
lib/main/modules/InjectorModule.js
Setting up
Synerise.Injector.setBannerListener({
onHide: function() {
// your implementation
},
onPresent: function() {
// your implementation
}
});
Functions
The following method is called after a banner appears.
onPresent: function() {
// implementation
}
The following method is called when a banner disappears.
onHide: function() {
// implementation
}