/**
 * Placeholder for Map interaction.
 * @author Guy Whitfield
 */
rn.PanelFleetChild = function () {
    var that = this;

    this.settings = {};

    this.init = function () {
        this.parent.init.call(this);
        //this.domNode = $('#panel-fleet-child');
    };


    /**
    * EVENT LISTENERS
    */

    /**
    * onMapLoaded - listens for the onUrlChange custom event and fires renderInitialView to see if we need to do anything.
    */
    this.onMapLoaded = function () {
        
    };
    return this;
}

rn.PanelFleetChild.prototype = new rn.Panel();
rn.PanelFleetChild.constructor = rn.PanelFleetChild;
rn.panelFleetChild = new rn.PanelFleetChild();
rn.panelFleetChild.parent = rn.PanelFleetChild.prototype;
