// BEGIN CONFIG

// Enter your host, and chat server port here.

var config = {
	
	// Socket Connection Settings
	host: 'joltproject.com',	// Host address of the Jolt server
	port: 4131,					// Port of the Jolt server or load ballancer.
	
	
	title: "Jolt Chat Client",	// Displayed in the title of the browser before the current views name
	
	// Name of the theme you wish to use, it should be a folder in the ./theme directory
	theme: null,
	
	// Jolt Extensions
	extensions: [				// An array of file names in the extensions folder
		'accounts',
		'channel_management',
		'away_notifier',
		
		// Bug reporting extension, only used on the offical jolt client
		'bug_report'
	],
	
	// Emoticons
	emoticons: {
		">:D":		"emotion_evilgrin",
		":D":		"emotion_grin",
		"XD":		"emotion_happy",
		":)":		"emotion_smile",
		":O":		"emotion_suprised",
		":P":		"emotion_tongue",
		":(":		"emotion_unhappy",
		":3":		"emotion_waii",
		";)":		"emotion_wink",
		":!:":		"exclamation",
		":+:":		"bullet_add"
	}
	
};
// END CONFIG

if (window.fluid || window.platform) { config.extensions.push('ssb_support'); }
