File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ export async function render(locker) {
2222 // Make sure to serve the top ad always
2323 zones . get ( "zone-el-101" ) ;
2424
25- // Carousel for miamiherald/News
26- if ( market == "miamiherald" && taxonomy . includes ( "News ") ) {
25+ // Featured carousels
26+ if ( locker . getConfig ( "zone.carousel ") ) {
2727 let carousel = new zones . Zone ( "zone-featured-carousel" ) ;
2828 carousel . dataset . taxonomy = taxonomy ;
2929 carousel . dataset . market = market ;
@@ -45,7 +45,12 @@ export async function render(locker) {
4545 combos . forEach ( ele => ele . remove ( ) ) ;
4646
4747 // Redistribute zones generically
48- zones . distribute ( 5 ) ;
48+ if ( market == "kansascity" ) {
49+ // Tighter for the Super Bowl
50+ zones . distribute ( 4 ) ;
51+ } else {
52+ zones . distribute ( 5 ) ;
53+ }
4954 }
5055
5156 zones . render ( )
You can’t perform that action at this time.
0 commit comments