//
var TN_Widget = function() {
var months = ["", "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
return {
newWindow : true,
CreateEventRow : function(row, isAlt) {
var t = row[4].split("/");
t[0] = months[t[0]];
t[2] = ", " + t[2];
return "
" +
t[0] + " " + "" + t[1] + "" +
t[2] + " " +
row[3].substring(0,3) + " " +
row[5] + " | " +
row[0] + " " +
row[1] + " - " +
row[2] + " | " + this.btnText + "" +
" |
";
},
AddCss: function(cssUrl) {
var fileref=document.createElement("link");
fileref.setAttribute("rel", "stylesheet");
fileref.setAttribute("type", "text/css");
fileref.setAttribute("href", cssUrl);
document.getElementsByTagName("head")[0].appendChild(fileref);
},
CreateTable : function(eventData,kwds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
var newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
var footerLink = "";
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else if(document.querySelector(".tnpl_results_container") != null) {
document.querySelector(".tnpl_results_container").innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else
document.write("" + newTable.join('') + "" + footerLink + "
");
}
};
}();
//BPW-TNSERV-01A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['AHL Pacific Division Finals: Colorado Eagles vs. TBD - Home Game 1 (Date: TBD)','Blue Federal Credit Union Arena','Loveland, CO','Wednesday','5/14/2025','TBD','7085809','AHL-Pacific-Division-Finals--Colorado-Eagles-vs--TBD---Home-Game-1--Date--TBD--5-14-2025'],['Suelta La Lengua','Spotlight 29 Casino','Coachella, CA','Friday','5/16/2025','8:00 PM','6945408','Suelta-La-Lengua-5-16-2025'],['AHL Pacific Division Finals: Colorado Eagles vs. TBD - Home Game 2 (Date: TBD - If Necessary)','Blue Federal Credit Union Arena','Loveland, CO','Saturday','5/17/2025','TBD','7085810','AHL-Pacific-Division-Finals--Colorado-Eagles-vs--TBD---Home-Game-2--Date--TBD---If-Necessary--5-17-2025'],['AHL Pacific Division Finals: Colorado Eagles vs. TBD - Home Game 3 (Date: TBD - If Necessary)','Blue Federal Credit Union Arena','Loveland, CO','Thursday','5/22/2025','TBD','7085811','AHL-Pacific-Division-Finals--Colorado-Eagles-vs--TBD---Home-Game-3--Date--TBD---If-Necessary--5-22-2025'],['Grupo Laberinto','Spotlight 29 Casino','Coachella, CA','Friday','6/13/2025','8:00 PM','6991860','Grupo-Laberinto-6-13-2025'],['Tania Estrada','Spotlight 29 Casino','Coachella, CA','Friday','6/20/2025','8:00 PM','7130843','Tania-Estrada-6-20-2025'],['Gerardo Coronel','Spotlight 29 Casino','Coachella, CA','Saturday','6/28/2025','8:00 PM','7055526','Gerardo-Coronel-6-28-2025'],['Luz Pazos','Spotlight 29 Casino','Coachella, CA','Friday','7/11/2025','8:00 PM','7130842','Luz-Pazos-7-11-2025'],['Martin Rizo ','Spotlight 29 Casino','Coachella, CA','Friday','7/18/2025','8:00 PM','7130844','Martin-Rizo--7-18-2025'],['Banda Machos','Spotlight 29 Casino','Coachella, CA','Saturday','7/19/2025','8:00 PM','6966246','Banda-Machos-7-19-2025']],'"Coachella"','https://www.ticketnetwork.com');