audio.download

Path: rsConf.cb.audio.download

Default: None

Description: Fires when a user downloads an mp3 from the Download dialog. The "this" keyword will refer to the container of the currently active player.

Example:

window.rsConf = {
    cb: {
        audio: {
            download: function () {
                doSomething();
            }
        }
    }
};