﻿/*************************************************************
 *
 * vxAlerts.js
 * 
 * A list of 'static' properties which map to Alert constants
 * within the KIT VX players.
 *
 * vxAlertTypes: Map to generic actions that caused the Alert.
 * vxAlertCauses: Map to specific actions that caused the Alert
 *
 *************************************************************/
 
 var vxAlertTypes = {
	
	//Alert Types
	ACTION_REQUIRES_LOGIN:				"AlertType.ActionRequiresLogin"
	
};

var vxAlertCauses = {
	
	//Alert Causes
	ATTEMPTED_VOTE:						"AlertCause.AttemptedVote",
	ATTEMPTED_PREMIUM_ACCESS:			"AlertCause.AttemptedPremiumAccess",
	ATTEMPTED_COMMENT:					"AlertCause.AttemptedComment"
	
}