Skip to content

Commit 87bfb49

Browse files
author
David Seek
committed
Theming bug fix
1 parent 4f7d700 commit 87bfb49

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

ChangelogKit.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'ChangelogKit'
11-
s.version = '0.1.6'
11+
s.version = '0.1.7'
1212
s.summary = 'A library that offers tools to display a changelog using webviews and user defaults.'
1313

1414
# This description is used to generate tags and improve search results.

ChangelogKit/Classes/Views/WebViewController.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ class WebViewController: UIViewController {
3232
webView.allowsBackForwardNavigationGestures = false
3333
webView.contentMode = .scaleToFill
3434
webView.scrollView.delegate = webViewScrollViewDelegate.shared
35-
webView.backgroundColor = theme.backgroundColor
35+
webView.backgroundColor = .clear
36+
webView.isOpaque = false
3637
return webView
3738
}()
3839

@@ -50,6 +51,7 @@ class WebViewController: UIViewController {
5051
super.viewDidLoad()
5152

5253
view.backgroundColor = theme.backgroundColor
54+
webViewContainer.backgroundColor = theme.backgroundColor
5355

5456
setNavigationBar()
5557
setWebView()

0 commit comments

Comments
 (0)