Jump to content

Recommended Posts

Posted

Week 2 is here, you have the always standing room only Dillard vs stranahan inner city rival matchup. 

 
amazon.com
Sign up to Amazon Prime for unlimited free delivery
amazon.com
thumbnail.jpg?domain=amazon.com
>
 
No more sad side salads
Ken’s Italian. From pasta bowls to picnic plates, discover the new Italian...
tasteofhome.com
thumbnail.jpg?domain=tasteofhome.com
>
 
amazon.com
Sign up to Amazon Prime for unlimited free delivery
amazon.com
thumbnail.jpg?domain=amazon.com
>
 
amazon.com
Sign up to Amazon Prime for unlimited free delivery
amazon.com
thumbnail.jpg?domain=amazon.com
>

the dragons didn’t have a week 1 game, not sure what happen with that or if their bye week was week 1 on purpose to come into their big game vs Dillard in week 2 with some sort of surprise (shrugs shoulders) lol. 

 
amazon.com
Sign up to Amazon Prime for unlimited free delivery
amazon.com
thumbnail.jpg?domain=amazon.com
>
 
amazon.com
Sign up to Amazon Prime for unlimited free delivery
amazon.com
thumbnail.jpg?domain=amazon.com
>
 
amazon.com
Sign up to Amazon Prime for unlimited free delivery
amazon.com
thumbnail.jpg?domain=amazon.com
>
 
"; // Append the close button to the iframe container let wrapperIframeBH = document.getElementById("bh-wrapper-iframe") if (wrapperIframeBH) { wrapperIframeBH.appendChild(closeBtnDefault); } // Position the button based on parsed data closeBtnDefault.style.top = "0px"; closeBtnDefault.style.right = "0px"; closeBtnDefault.style.zIndex = 1010; // Log the button for debugging console.log('Append default BH close button: ', closeBtnDefault); // Attach event listeners for both touchstart and click let _closeBtnDefault = document.getElementById("bh-wrapper-iframe-close-btn-default"); _closeBtnDefault.addEventListener('touchstart', _closeTouchClickHandler); _closeBtnDefault.addEventListener('click', _closeTouchClickHandler); } } catch (error) { // Handle errors console.error('Error appending the default BH close button:', error); } }, 29000); // ***** Add default close button Section End ***** // console.log('Start listening for messages'); window.addEventListener("message", function(event) { // console.log("BH - message received 1", event.data); try { let parsedData = BHMessenger.decode(event.data); // console.log('BH - message received - parsedObject',event.data, parsedData); if (parsedData) { let el2 = document.getElementById('bh-div'); let el3 = document.getElementById("iframe-click-overlay"); let BHI = document.getElementById("bh-wrapper-iframe"); let closeBtn; const _closeTouchClickHandler = function(evt) { evt.preventDefault(); evt.stopPropagation(); if (el2) { el2.style.display = "none"; closeBtn.style.display = 'none'; console.log('Child close button touched') } if (el3) { el3.style.display = "none"; console.log('Child click overlay removed'); } if (BHI) { BHI.style.display = "none"; console.log('bh ad closed'); } try { const adIframes = document.querySelectorAll('iframe[data-google-container-id]'); adIframes.forEach(iframe => { try { const iframeDoc = iframe.contentDocument || iframe.contentWindow.document; if (iframeDoc && iframeDoc.getElementById('bhtracker')) { iframe.style.display = "none"; } } catch (innerError) { // Likely a cross-origin iframe; ignore or log if needed console.log("Cannot access iframe content:", innerError); } }); } catch (error) { console.log("Error hiding ad iframe:", error); } }; if (parsedData.type === "CMD_BIGHAPPY_SHOW_AD_CLOSE_BTN") { try { let _closeBtnDefault = document.getElementById("bh-wrapper-iframe-close-btn-default"); if (_closeBtnDefault) { console.log("Removing default BH close button and adding requested one."); _closeBtnDefault.remove(); // Safely remove the element } else { console.log("Default BH close button not found."); } } catch (error) { console.error("Error removing the close button:", error); } console.log('BH - message received - show close btn'); closeBtn = document.createElement("div"); closeBtn.setAttribute("class", "bh-wrapper-iframe-close-btn-wrapper"); closeBtn.innerHTML = "
"+ getCloseBtnIcon(parsedData.data.variant) +"
"; document.getElementById("bh-wrapper-iframe").appendChild(closeBtn); closeBtn.style.top = parsedData.data.position.top; closeBtn.style.right = parsedData.data.position.right; closeBtn.style.zIndex = 1010; console.log('BH - message received - show close btn - append close btn',closeBtn); let _closeBtn = document.getElementById("bh-wrapper-iframe-close-btn"); _closeBtn.addEventListener('touchstart',_closeTouchClickHandler); _closeBtn.addEventListener('click',_closeTouchClickHandler); } else if (parsedData.type === "CMD_BIGHAPPY_HIDE_CLICK_CONTAINER") { console.log('Hide click container'); el3.style.display = "none"; el2.style.pointerEvents = "all"; // enable pointer events for iframe _unitNeedsTouch = true; // BHI.removeEventListener("touchstart", touchClickHandler); // BHI.removeEventListener("click", touchClickHandler); } else if (parsedData.type === "CMD_BIGHAPPY_SET_CLICK_CONTAINER_DIMENSIONS") { console.log('Adjust click container dimensions'); el3.style.width = parsedData.data.dimension.width; el3.style.height = parsedData.data.dimension.height; // el2.style.pointerEvents = "all"; // enable pointer events for iframe // _unitNeedsTouch = true; // BHI.removeEventListener("touchstart", touchClickHandler); // BHI.removeEventListener("click", touchClickHandler); } else if(parsedData.type === "CMD_BIGHAPPY_SET_VOLUME_BUTTON"){ let volumeBtn = document.createElement("div"); volumeBtn.setAttribute("class", "bh-wrapper-iframe-volume-btn-wrapper"); volumeBtn.style.width = "28px"; volumeBtn.style.height = "28px"; volumeBtn.style.position = "absolute"; volumeBtn.style.backgroundColor = "rgba(0,0,0,0.3)"; volumeBtn.style.borderRadius = "50%"; volumeBtn.style.top = parsedData.data.position.top; volumeBtn.style.right = parsedData.data.position.right; volumeBtn.setAttribute("data-status", "muted"); volumeBtn.style.zIndex = 1010; let volumeIcon = document.createElement("img"); volumeIcon.src = "https://cdn.bighappy.co/creatives/assets/volume-off.svg"; volumeIcon.style.width = "100%"; volumeBtn.appendChild(volumeIcon); function _volumeHandler(evt) { if(volumeBtn.getAttribute("data-status") === "muted"){ console.log('Unmute'); el2.contentWindow.postMessage("CMD_BIGHAPPY_UNMUTE", "*"); volumeIcon.src = "https://cdn.bighappy.co/creatives/assets/volume-on.svg"; volumeBtn.setAttribute("data-status", "unmuted"); }else{ console.log('Mute'); el2.contentWindow.postMessage("CMD_BIGHAPPY_MUTE", "*"); volumeIcon.src = "https://cdn.bighappy.co/creatives/assets/volume-off.svg"; volumeBtn.setAttribute("data-status", "muted"); } } volumeBtn.addEventListener('click', _volumeHandler); volumeBtn.addEventListener('touchstart',_volumeHandler); document.getElementById("bh-wrapper-iframe").appendChild(volumeBtn); } else if(parsedData.type === "CMD_BIGHAPPY_SET_REPLAY_BUTTON"){ let replayBtn = document.createElement("div"); replayBtn.setAttribute("class", "bh-wrapper-iframe-replay-btn-wrapper"); replayBtn.style.width = "28px"; replayBtn.style.height = "28px"; replayBtn.style.position = "absolute"; replayBtn.style.backgroundColor = "rgba(0,0,0,0.3)"; replayBtn.style.borderRadius = "50%"; replayBtn.style.top = parsedData.data.position.top; replayBtn.style.right = parsedData.data.position.right; replayBtn.setAttribute("data-status", "replay"); replayBtn.style.zIndex = 1010; let replayIcon = document.createElement("img"); replayIcon.src = "https://cdn.bighappy.co/creatives/assets/replay-button.svg"; replayIcon.style.width = "100%"; replayBtn.appendChild(replayIcon); function _replayHandler(evt) { if(replayBtn.getAttribute("data-status") === "replay"){ console.log('replay'); el2.contentWindow.postMessage("CMD_BIGHAPPY_REPLAY", "*"); replayBtn.style.display = "none" } } replayBtn.addEventListener('click', _replayHandler); replayBtn.addEventListener('touchstart',_replayHandler); document.getElementById("bh-wrapper-iframe").appendChild(replayBtn); } else if(parsedData.type === "CMD_BIGHAPPY_UPDATE_URL"){ el3.addEventListener("click", ()=>{ window.open(parsedData.data.url,"_blank") }); } else if(parsedData.type === "CMD_BIGHAPPY_SET_CC_BUTTON") { let ccButton = document.createElement("div"); ccButton.setAttribute("class", "bh-wrapper-iframe-cc-btn-wrapper"); ccButton.style.width = "28px"; ccButton.style.height = "28px"; ccButton.style.position = "absolute"; ccButton.style.backgroundColor = "rgba(0,0,0,0.3)"; ccButton.style.borderRadius = "50%"; ccButton.style.top = parsedData.data.position.top; ccButton.style.right = parsedData.data.position.right; ccButton.setAttribute("data-status", "enabled"); ccButton.style.zIndex = 1010; let ccIcon = document.createElement("img"); ccIcon.src = "https://cdn.bighappy.co/creatives/assets/cc-enabled.svg"; ccIcon.style.width = "100%"; ccButton.appendChild(ccIcon); function _ccHandler(evt) { if(ccButton.getAttribute("data-status") === "disabled"){ console.log('Enable CC'); el2.contentWindow.postMessage("CMD_BIGHAPPY_ENABLE_CC", "*"); ccIcon.src = "https://cdn.bighappy.co/creatives/assets/cc-enabled.svg"; ccButton.setAttribute("data-status", "enabled"); }else{ console.log('Disable CC'); el2.contentWindow.postMessage("CMD_BIGHAPPY_DISABLE_CC", "*"); ccIcon.src = "https://cdn.bighappy.co/creatives/assets/cc-disabled.svg"; ccButton.setAttribute("data-status", "disabled"); } } ccButton.addEventListener('click', _ccHandler); ccButton.addEventListener('touchstart', _ccHandler); document.getElementById("bh-wrapper-iframe").appendChild(ccButton); } else if(parsedData.type === "CMD_BIGHAPPY_APPEND_SECONDARY_CLICK_OVERLAY") { console.log('BH - CMD_BIGHAPPY_APPEND_SECONDARY_CLICK_OVERLAY'); let secClickOverlay = document.createElement("div"); secClickOverlay.setAttribute("id", "secondary-click-overlay"); secClickOverlay.innerHTML = " "; let _sCC = document.getElementById("bh-wrapper-iframe").appendChild(secClickOverlay); secClickOverlay.style.left = parsedData.data.position.left; secClickOverlay.style.top = parsedData.data.position.top; secClickOverlay.style.width = parsedData.data.position.width; secClickOverlay.style.height = parsedData.data.position.height; secClickOverlay.style.zIndex = 1015; secClickOverlay.style.display = "block"; // let _sCC = document.getElementById("bh-wrapper-iframe-close-btn"); _sCC.addEventListener('touchend',function(evt) { evt.preventDefault(); evt.stopPropagation(); console.log('BH - CMD_BIGHAPPY_APPEND_SECONDARY_CLICK_OVERLAY - touch', parsedData.data); window.open(parsedData.data.url, "_blank"); }); _sCC.addEventListener('click', function(evt) { evt.preventDefault(); evt.stopPropagation(); console.log('BH - CMD_BIGHAPPY_APPEND_SECONDARY_CLICK_OVERLAY - click', parsedData.data); window.open(parsedData.data.url, "_blank"); }); } else if(parsedData.type === "CMD_BIGHAPPY_RESIZE_PRIMARY_CLICK_OVERLAY") { console.log('BH - CMD_BIGHAPPY_RESIZE_PRIMARY_CLICK_OVERLAY'); el3.style.left = parsedData.data.position.left; el3.style.top = parsedData.data.position.top; el3.style.width = parsedData.data.position.width; el3.style.height = parsedData.data.position.height; el3.style.maxHeight = parsedData.data.position.height; el2.style.pointerEvents = "all"; // enable pointer events for iframe } } } catch (exp) { console.log("Exception while parsing message"); } });

DILLARD - My panthers hit the ground running at 100mph last week over an always Orlando power in Dr.Phillips, shutting out the central Florida panthers 39-0. 
 

We started out very slow on offense, had a few miscues, which is to be expected when your last real game was in May (spring game) & you elected not to have a kickoff classic game because you wanted to be 100% zeroed in on your out of county week 1 opponent. 
 

if Dillard comes in with the same intensity and focus in all phases of the game, I see this as being a game they can take control over early. But this is a rival game so Stranahan is gonna come in looking to make a statement on Dillards new field, so we have to respect each opponent and take no one lightly. 


Posted
31 minutes ago, FBGUY1989 said:

I see Dillard stream rolling Stranahan in the match up not even close. The only thing that's going to be competitive is the band.

They must gonna rent southern out of Louisiana for the weekend because if not the band battle won’t be competitive either lmao lol

  • DILLARDBOYZ954 changed the title to 1st qt DILLARD 9 STRANAHAN 0
  • DILLARDBOYZ954 changed the title to 2nd qt DILLARD 16 STRANAHAN 0
  • DILLARDBOYZ954 changed the title to 3rd Qt DILLARD 37 STRANAHAN 0
  • DILLARDBOYZ954 changed the title to FINAL DILLARD 44 STRANAHAN 6
Posted
5 hours ago, nolebull813 said:

Dang I had 52-6. Gave Dillard one too many scores :P

Ugly ugly game. Game didn’t start until 9:30pm, almost was cancelled. Then Dillard played exactly like a team playing down to their opponent. There was little to know umph lol.

in the first quarter they were in the dragons red zone 6 times. 2 times they fumbled the ball away. Wet ball or not u gotta hold on to the rock. The 3rd time they had a turnover on downs at the dragons 5 yard line. 
 

then in the 2nd quarter up 30-0 they got a pick ran it back to the dragons 10 & fumbled again at the dragons 4 yard line right before the half. 
 

in retro spect Dillard should have had over 50 b4 the half. Idk if that 3 hour long delay and rain and thunder had them boys sluggish and unfocused or what but the game overall was meh lol. Then the head coach took out the starters two min into the third quarter while Stranahan kept theirs in the whole game, which led to their only score of the game which had the crowd sick. Because Stranahan should have been goose egged they couldn’t not get pass their own 40 yard line all game lol. 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...


×
×
  • Create New...