Source: agentLibrary.multisocket.js

function initAgentLibraryMultisocket (context) {
    /**
     * @namespace Multisocket
     * @memberof AgentLibrary
     */

    'use strict';

    var AgentLibrary = context.AgentLibrary;

    /**
     * Method to request call details from other tabs using the broadcast channel, for multisocket
     */
    AgentLibrary.prototype.loadCurrentCall = function(callback) {
        broadcastChannelHelper.requestCurrentCall(callback);
    };
}