Flames call up Adam Klapka from Wranglers
The Calgary Flames have called up forward Adam Klapka from the AHL Wranglers, the team announced Wednesday.

The Calgary Flames have called up forward Adam Klapka from the AHL Wranglers, the team announced Wednesday.
Klapka is coming off a weekend during which he scored two goals in two games for the Wranglers.
In 13 games earlier this season with the Flames, Klapka has one goal and no assists to go with 15 minutes in penalties. In six games with the big club last season, he had one goal and no assists, and 19 PIMs.
In 33 games with the Wranglers this season, he has 14 goals and 12 assists for 26 points to go with 50 PIMs.
Klapka was signed by the Flames as a free agent on May 16, 2022.
In a heated playoff battle, the Flames host the Canucks on Wednesday. Check out all the action on Sportsnet and Sportsnet+, starting at 7 p.m. MT / 6 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 = `
`; return; }
if (!oddsData) { container.innerHTML = `
`; return; }
let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });
container.innerHTML = `
`; }
// Example usage renderBetMGM('block_c64d8dfc04227aa5681e7274c76dfd2a', 'NHL', '11216b37-4bae-4a4a-9c11-be0e3e438909');