diff --git a/iOS/Article/WebViewController.swift b/iOS/Article/WebViewController.swift index 258a7c2c2..21c36ca93 100644 --- a/iOS/Article/WebViewController.swift +++ b/iOS/Article/WebViewController.swift @@ -515,8 +515,8 @@ private extension WebViewController { let configuration = WebViewConfiguration.configuration(with: articleIconSchemeHandler) let webView = WKWebView(frame: self.view.bounds, configuration: configuration) - webView.isOpaque = false; - webView.backgroundColor = .clear; + webView.isOpaque = false + webView.backgroundColor = .clear // Add the webview - using autolayout will cause fullscreen video to fail and lose the web view webView.autoresizingMask = [.flexibleWidth, .flexibleHeight]