Skip to content

Commit 3196799

Browse files
author
Evan Greer
committed
minor clean up
1 parent 1ad162d commit 3196799

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

swift-sdk/uicomponents/IterableEmbeddedView.swift

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -117,21 +117,21 @@ public class IterableEmbeddedView:UIView {
117117
}
118118
}
119119

120-
/// Banner Border Color
120+
/// OOTB View Border Color
121121
public var ootbViewBorderColor: UIColor = UIColor(red: 0.88, green: 0.87, blue: 0.87, alpha: 1.00) {
122122
didSet {
123123
self.layer.borderColor = ootbViewBorderColor.cgColor
124124
}
125125
}
126126

127-
/// Banner Border Width
127+
/// OOTB View Border Width
128128
public var ootbViewBorderWidth: CGFloat = 1.0 {
129129
didSet {
130130
self.layer.borderWidth = ootbViewBorderWidth
131131
}
132132
}
133133

134-
/// Banner Corner Radius
134+
/// OOTB View Corner Radius
135135
public var ootbViewCornerRadius: CGFloat = 8.0 {
136136
didSet {
137137
self.layer.cornerRadius = ootbViewCornerRadius
@@ -177,7 +177,7 @@ public class IterableEmbeddedView:UIView {
177177
}
178178
}
179179

180-
/// Description Text Color
180+
/// Body Text Color
181181
public var bodyTextColor: UIColor = UIColor.darkGray {
182182
didSet {
183183
labelDescription.textColor = bodyTextColor
@@ -292,7 +292,6 @@ public class IterableEmbeddedView:UIView {
292292
}
293293
case .banner:
294294
imgView.isHidden = EMimage == nil
295-
//bannerBorderColor = cardBorderColor
296295
imgView.isHidden = self.EMimage == nil
297296
imgView.image = EMimage
298297
cardImageView.isHidden = true

0 commit comments

Comments
 (0)