Blue Jays’ Ernie Clement reps Maple Leafs jersey ahead of Game 7

3 months ago 10

Rommie Analytics

The Passion has hit the Toronto Blue Jays clubhouse.

Infielder Ernie Clement repped a Toronto Maple Leafs jersey ahead of the Blue Jays’ series finale against the Detroit Tigers, sporting former captain John Tavares’ No. 91 as he warmed up.

The Maple Leafs play a winner-take-all Game 7 against the Florida Panthers on Sunday night in Toronto.

Watch Maple Leafs-Panthers Game 7 on Sportsnet
Watch Maple Leafs-Panthers Game 7 on Sportsnet

It all comes down to one game between the Maple Leafs and Panthers. Watch all the action on Sportsnet and Sportsnet+ starting at 7 p.m. ET / 4 p.m. PT.

Broadcast Schedule

Clement, a native of Rochester, N.Y., provided some words of support to his NHL counterparts.

“Go Leafs, baby,” he said in a video posted by the Blue Jays. “Lets go. Game 7. This is it.”

Slugger George Springer also voiced his faith in the blue-and-white, predicting a decisive victory for the Maple Leafs that would send them to the Eastern Conference Final for the first time since 2002.

“It’s gonna be 4-1,” the fourth-year Blue Jay said when asked for his Game 7 prediction. “Marner’s gonna get it going, and then we’re going to have a sleeper no one expects, a defenceman with the game-winner.”

You can watch the do-or-die Game 7 on Sportsnet and Sportsnet+, with coverage starting at 7 p.m. ET / 4 p.m. PT.

if (!res.ok) { throw new Error('Failed to fetch odds data'); }

const data = await res.json(); const oddsData = data?.data?.game?.details?.current_line; const visitingTeam = data?.data?.game?.visiting_team; const visitingTeamLogo = data?.data?.game?.visiting_team?.image_url_90; const homeTeam = data?.data?.game?.home_team; const homeTeamLogo = data?.data?.game?.home_team?.image_url_90; const gameTimestamp = data?.data?.game?.details?.timestamp;

return { oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp }; }

async function renderBetMGM(componentId, league, gameId) { let oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp, error;

const container = document.getElementById(componentId + '-odds'); if (!container) return;

try { ({ oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp } = await fetchOddsData(league, gameId)); } catch (err) { error = err.message; }

if (error) { container.innerHTML = `

Error: ${error}

`; return; }

if (!oddsData) { container.innerHTML = `

Odds data not available

`; return; }

let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });

container.innerHTML = `

BetMGM Odds
Moneyline
${visitingTeam.short_name}
${oddsData.away_money > 0 ? `+${oddsData.away_money}` : oddsData.away_money}
${homeTeam.short_name}
${oddsData.home_money > 0 ? `+${oddsData.home_money}` : oddsData.home_money}
Spread
${oddsData.fav_id === visitingTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`}
${oddsData.fav_id === visitingTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money}
${oddsData.fav_id === homeTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`}
${oddsData.fav_id === homeTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money}
Over/Under
O ${oddsData.total}
${oddsData.over_money > 0 ? `+${oddsData.over_money}` : oddsData.over_money}
U ${oddsData.total}
${oddsData.under_money > 0 ? `+${oddsData.under_money}` : oddsData.under_money}

`; }

// Example usage renderBetMGM('block_4157ee6779bac813bc31c9f43e45cb26', 'NHL', '62dc214e-a0f9-4e12-a204-74507a9a2116');

Read Entire Article