
/**
 * @class Voyeur.Tool.VoyeurFooter 
 * @description A simple panel with credits for the Voyeur project.
 * @extends Ext.Panel
 * @extends Voyeur.Tool
 * @author Stéfan Sinclair
 * @since 0.1.1
 */
Voyeur.Tool.VoyeurFooter = Ext.extend(Ext.Panel, {
	constructor : function(config) {
		Ext.apply(this, new Voyeur.Tool(config, this))
		Ext.applyIf(config, {
            html: this.getFooterText(),
            autoHeight: true,
			collapsible : false,
			split : false,
			layout : 'fit',
			collapsibleMode : null,
			id : 'footer'
			,header : false
		});
		Voyeur.Tool.VoyeurFooter.superclass.constructor.apply(this, arguments);
	}
});

Ext.reg('voyeurFooter', Voyeur.Tool.VoyeurFooter);
