-
Notifications
You must be signed in to change notification settings - Fork 556
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add wrapper div for merchandising slots
- Loading branch information
1 parent
5dfdb0d
commit cc14d0d
Showing
3 changed files
with
31 additions
and
16 deletions.
There are no files selected for viewing
18 changes: 10 additions & 8 deletions
18
common/app/views/fragments/commercial/commercialComponent.scala.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
@()(implicit request: RequestHeader) | ||
|
||
@fragments.commercial.adSlot( | ||
"merchandising", | ||
Seq("commercial-component"), | ||
Map(), | ||
showLabel=false, | ||
refresh=false, | ||
useFlexContainer = true | ||
){ } | ||
<div class="merchandising-wrapper"> | ||
@fragments.commercial.adSlot( | ||
"merchandising", | ||
Seq("commercial-component"), | ||
Map(), | ||
showLabel=false, | ||
refresh=false, | ||
useFlexContainer = true | ||
){ } | ||
</div> |
18 changes: 10 additions & 8 deletions
18
common/app/views/fragments/commercial/commercialComponentHigh.scala.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
@(isPaidContent: Boolean, hasPageSkin: Boolean = false)(implicit request: RequestHeader) | ||
|
||
@fragments.commercial.adSlot( | ||
"merchandising-high", | ||
Seq("commercial-component-high"), | ||
Map(), | ||
showLabel=false, | ||
refresh=false, | ||
useFlexContainer = true | ||
){ } | ||
<div class="merchandising-high-wrapper"> | ||
@fragments.commercial.adSlot( | ||
"merchandising-high", | ||
Seq("commercial-component-high"), | ||
Map(), | ||
showLabel=false, | ||
refresh=false, | ||
useFlexContainer = true | ||
){ } | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters