api.box.onShrink
Whenever the chatbox becomes minimized, the given callback will be triggered.
Examples
You could play audio sounds whenever an operator sends a message to a shrunken box:
var needToPlayAudio = false;
olark('api.box.onShrink', function() {
needToPlayAudio = true;
})
olark('api.box.onExpand', function() {
needToPlayAudio = false;
})
olark('api.chat.onMessageToVisitor', function(){
if (needToPlayAudio) {
playCustomAudioNotification();
}
})
Discussion
Feel free to propose good uses for this method, or even drop us some suggestions for improvement! You can also join our mailing list to collaborate with other developers and get updates from us.